Commit 24703e4c authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

quartz: Rewrite add_data with CoTaskMemRealloc and error handling.

parent 32169eaf
......@@ -145,11 +145,11 @@ static int add_data(struct Vector * v, const BYTE * pData, int size)
int index = v->current;
if (v->current + size > v->capacity)
{
LPBYTE pOldData = v->pData;
v->capacity = (v->capacity + size) * 2;
v->pData = CoTaskMemAlloc(v->capacity);
memcpy(v->pData, pOldData, v->current);
CoTaskMemFree(pOldData);
int new_capacity = (v->capacity + size) * 2;
BYTE *new_data = CoTaskMemRealloc(v->pData, new_capacity);
if (!new_data) return -1;
v->capacity = new_capacity;
v->pData = new_data;
}
memcpy(v->pData + v->current, pData, size);
v->current += size;
......
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