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:
Martin Nordholts 2008-06-01 15:10:08 +00:00 committed by Martin Nordholts
parent 0343c2b5b9
commit 6730e40cbb
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -624,7 +624,7 @@ GetCode (FILE *fd,
return 0;
}
if ((curbit + code_size) >= lastbit)
while ((curbit + code_size) >= lastbit)
{
if (done)
{