Commit a3b77122 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

usp10: Use heap_calloc() in computeIsolatingRunsSet().

parent b62aa917
......@@ -998,7 +998,7 @@ static void computeIsolatingRunsSet(unsigned baselevel, WORD *pcls, const WORD *
Run *runs;
IsolatedRun *current_isolated;
if (!(runs = heap_alloc(uCount * sizeof(*runs))))
if (!(runs = heap_calloc(uCount, sizeof(*runs))))
return;
list_init(set);
......
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