From 6a0bdddfc416a99084ac21c9ea1b6672b2670f35 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Sun, 21 Mar 2010 18:55:34 +0300 Subject: [PATCH] shell32: Add a note about a possible crash on NULL input. --- dlls/shell32/tests/autocomplete.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/shell32/tests/autocomplete.c b/dlls/shell32/tests/autocomplete.c index 569625f8e7a..76da0ea96e6 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);