msvcr90: Fix an integer overflow on 64 bit system for qsort_s tests.

This commit is contained in:
Eric Pouech 2010-12-26 18:00:20 +01:00 committed by Alexandre Julliard
parent 495e55c07d
commit cecddb3216
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ static void test_qsort_s(void)
/* overflow without side effects, other overflow values crash */
g_qsort_s_context_counter = 0;
p_qsort_s((void*)arr2, (1 << (8*sizeof(size_t) - 1)) + 1, sizeof(int), intcomparefunc, &g_qsort_s_context_counter);
p_qsort_s((void*)arr2, (((size_t)1) << (8*sizeof(size_t) - 1)) + 1, sizeof(int), intcomparefunc, &g_qsort_s_context_counter);
ok(g_qsort_s_context_counter == 0, "callback shouldn't have been called\n");
ok(arr2[0] == 23, "should remain unsorted, arr2[0] is %d\n", arr2[0]);
ok(arr2[1] == 42, "should remain unsorted, arr2[1] is %d\n", arr2[1]);