From: Jacek Caban jacek@codeweavers.com
Fixes Clang -Wuninitialized-const-pointer warnings. --- dlls/msvcr90/tests/msvcr90.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msvcr90/tests/msvcr90.c b/dlls/msvcr90/tests/msvcr90.c index b9ac23ee6f7..fddde17439f 100644 --- a/dlls/msvcr90/tests/msvcr90.c +++ b/dlls/msvcr90/tests/msvcr90.c @@ -792,7 +792,7 @@ static void test_qsort_s(void) static void test_bsearch_s(void) { int arr[7] = { 1, 3, 4, 8, 16, 23, 42 }; - int *x, l, i, j = 1; + int *x, l = 0, i, j = 1;
SET_EXPECT(invalid_parameter_handler); x = bsearch_s(NULL, NULL, 0, 0, NULL, NULL);