mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
fix size error introduced in commit 99b14815a5
This commit is contained in:
@@ -2624,7 +2624,7 @@ BOOL update_read_create_offscreen_bitmap_order(wStream* s, CREATE_OFFSCREEN_BITM
|
||||
{
|
||||
UINT16 *new_indices;
|
||||
|
||||
new_indices = (UINT16 *)realloc(deleteList->indices, deleteList->cIndices);
|
||||
new_indices = (UINT16 *)realloc(deleteList->indices, deleteList->sIndices * 2);
|
||||
if (!new_indices)
|
||||
return FALSE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user