mirror of https://github.com/GNOME/gimp.git
Merged from trunk:
2008-06-01 Martin Nordholts <martinn@svn.gnome.org> Merged from trunk: * plug-ins/common/gif-load.c (GetCode): Applied patch from Rik Snel that fixes loading of .gif files that contains 1-byte data blocks. (Bug #535888.) svn path=/branches/gimp-2-4/; revision=25877
This commit is contained in:
parent
0343c2b5b9
commit
6730e40cbb
|
@ -1,3 +1,11 @@
|
|||
2008-06-01 Martin Nordholts <martinn@svn.gnome.org>
|
||||
|
||||
Merged from trunk:
|
||||
|
||||
* plug-ins/common/gif-load.c (GetCode): Applied patch from Rik
|
||||
Snel that fixes loading of .gif files that contains 1-byte data
|
||||
blocks. (Bug #535888.)
|
||||
|
||||
2008-05-29 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* plug-ins/pygimp/gimpshelf.py: fix _vectors_id to return a tuple
|
||||
|
|
|
@ -624,7 +624,7 @@ GetCode (FILE *fd,
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ((curbit + code_size) >= lastbit)
|
||||
while ((curbit + code_size) >= lastbit)
|
||||
{
|
||||
if (done)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue