shell32: Add a note about a possible crash on NULL input.
authorNikolay Sivov <nsivov@codeweavers.com>
Sun, 21 Mar 2010 15:55:34 +0000 (18:55 +0300)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 22 Mar 2010 14:52:36 +0000 (15:52 +0100)
dlls/shell32/tests/autocomplete.c

index 569625f8e7a8832bf509be75d1302abfb6cce5d7..76da0ea96e6973fedcbbba79aaa7390e45e7a017 100644 (file)
@@ -59,6 +59,11 @@ static IAutoComplete *test_init(void)
     }
     ok(SUCCEEDED(r), "no IID_IACList (0x%08x)\n", r);
 
+if (0)
+{
+    /* crashes on native */
+    r = IAutoComplete_Init(ac, hEdit, NULL, NULL, NULL);
+}
     /* bind to edit control */
     r = IAutoComplete_Init(ac, hEdit, acSource, NULL, NULL);
     ok(SUCCEEDED(r), "Init failed (0x%08x)\n", r);