| Submitter | Corentin Chary |
|---|---|
| Date | June 7, 2010, 6:08 a.m. |
| Message ID | <1275890889-13349-7-git-send-email-corentincj@iksaif.net> |
| Download | mbox | patch |
| Permalink | /patch/54835/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 6db5570..77fcdf7 100644 --- a/ui/vnc-enc-tight.c +++ b/ui/vnc-enc-tight.c @@ -395,11 +395,11 @@ static int tight_palette_insert(QDict *palette, uint32_t rgb, int bpp, int max) if (data[i] == ci) { \ continue; \ } else { \ + ci = data[i]; \ if (!tight_palette_insert(*palette, (uint32_t)ci, \ bpp, max)) { \ return 0; \ } \ - ci = data[i]; \ } \ } \ \
While using indexed colors, the last color was never added to the palette. Triggered with ubuntu livecd. Signed-off-by: Corentin Chary <corentincj@iksaif.net> --- ui/vnc-enc-tight.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)