From: Nikolay Sivov Date: Sun, 21 Mar 2010 15:55:34 +0000 (+0300) Subject: shell32: Add a note about a possible crash on NULL input. X-Git-Tag: wine-1.1.42~414 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=6a0bdddfc416a99084ac21c9ea1b6672b2670f35;p=wine%2Feterwine.git shell32: Add a note about a possible crash on NULL input. --- diff --git a/dlls/shell32/tests/autocomplete.c b/dlls/shell32/tests/autocomplete.c index 569625f8e7..76da0ea96e 100644 --- a/dlls/shell32/tests/autocomplete.c +++ b/dlls/shell32/tests/autocomplete.c @@ -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);