提交 54d43eac 编写于 作者: C Corentin Chary 提交者: Anthony Liguori

vnc: tight: don't forget last pixel in tight_encode_indexed_rect

A simple patch would have been to just remove count -= 1, but this
one also replace the while (count--) with a for(i = 0; i < count; i++)
which I believe is more easy to understand.
Signed-off-by: NCorentin Chary <corentincj@iksaif.net>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 637503d1
......@@ -249,17 +249,16 @@ static void print_palette(const char *key, QObject *obj, void *opaque)
uint##bpp##_t *src; \
uint##bpp##_t rgb; \
uint8_t key[6]; \
int rep = 0; \
int i, rep; \
uint8_t idx; \
\
src = (uint##bpp##_t *) buf; \
\
count -= 1; \
while (count--) { \
for (i = 0; i < count; i++) { \
rgb = *src++; \
rep = 0; \
while (count && *src == rgb) { \
rep++, src++, count--; \
while (i < count && *src == rgb) { \
rep++, src++, i++; \
} \
tight_palette_rgb2buf(rgb, bpp, key); \
if (!qdict_haskey(palette, (char *)key)) { \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册