mirror of https://github.com/FreeRDP/FreeRDP
Fixed missing value check
This commit is contained in:
parent
c51ca89d9b
commit
cab2e28576
|
@ -2849,6 +2849,10 @@ static CACHE_BRUSH_ORDER* update_read_cache_brush_order(rdpUpdate* update, wStre
|
|||
|
||||
Stream_Read_UINT8(s, cache_brush->index); /* cacheEntry (1 byte) */
|
||||
Stream_Read_UINT8(s, iBitmapFormat); /* iBitmapFormat (1 byte) */
|
||||
|
||||
if (iBitmapFormat > ARRAYSIZE(BMF_BPP))
|
||||
goto fail;
|
||||
|
||||
cache_brush->bpp = BMF_BPP[iBitmapFormat];
|
||||
Stream_Read_UINT8(s, cache_brush->cx); /* cx (1 byte) */
|
||||
Stream_Read_UINT8(s, cache_brush->cy); /* cy (1 byte) */
|
||||
|
|
Loading…
Reference in New Issue