mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
cache: fix off-by-one-of-the-wrong-kind in BITMAP_CACHE_WAITING_LIST_INDEX handling
This commit is contained in:
parent
43204d7d2e
commit
58c36d60cb
@ -247,7 +247,7 @@ rdpBitmapCache* bitmap_cache_new(rdpSettings* settings)
|
|||||||
{
|
{
|
||||||
bitmap_cache->cells[i].number = settings->bitmapCacheV2CellInfo[i].numEntries;
|
bitmap_cache->cells[i].number = settings->bitmapCacheV2CellInfo[i].numEntries;
|
||||||
/* allocate an extra entry for BITMAP_CACHE_WAITING_LIST_INDEX */
|
/* allocate an extra entry for BITMAP_CACHE_WAITING_LIST_INDEX */
|
||||||
bitmap_cache->cells[i].entries = (rdpBitmap**) xzalloc(sizeof(rdpBitmap*) * bitmap_cache->cells[i].number + 1);
|
bitmap_cache->cells[i].entries = (rdpBitmap**) xzalloc(sizeof(rdpBitmap*) * (bitmap_cache->cells[i].number + 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user