mirror of
https://github.com/python-pillow/Pillow.git
synced 2026-02-05 06:49:32 +03:00
Fix RGB Dithering error cache value at end of row
This commit is contained in:
parent
8494b06c71
commit
6d4f2b509e
|
|
@ -1310,9 +1310,9 @@ topalette(
|
|||
e += 3;
|
||||
}
|
||||
|
||||
e[0] = b0;
|
||||
e[1] = b1;
|
||||
e[2] = b2;
|
||||
e[0] = r0;
|
||||
e[1] = g0;
|
||||
e[2] = b0;
|
||||
}
|
||||
ImagingSectionLeave(&cookie);
|
||||
free(errors);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user