mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[RTL] Handle RtlReAllocateHeap failure in com_class_add_progid. CID 1223161
This commit is contained in:
parent
73e6bc960a
commit
095a4d1d23
1 changed files with 4 additions and 1 deletions
|
@ -1504,8 +1504,11 @@ static BOOL com_class_add_progid(const xmlstr_t *progid, struct entity *entity)
|
|||
|
||||
if (progids->allocated == progids->num)
|
||||
{
|
||||
WCHAR **new_progids = RtlReAllocateHeap(RtlGetProcessHeap(), 0, progids->progids,
|
||||
2 * progids->allocated * sizeof(WCHAR*));
|
||||
if (!new_progids) return FALSE;
|
||||
progids->allocated *= 2;
|
||||
progids->progids = RtlReAllocateHeap(RtlGetProcessHeap(), 0, progids->progids, progids->allocated * sizeof(WCHAR*));
|
||||
progids->progids = new_progids;
|
||||
}
|
||||
|
||||
if (!(progids->progids[progids->num] = xmlstrdupW(progid))) return FALSE;
|
||||
|
|
Loading…
Reference in a new issue