Commit cecddb32 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent 495e55c0
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment