Don't read over the end of the buffer if '#' appears at the very end.

2005-02-15  Matthias Clasen  <mclasen@redhat.com>

	* io-pnm.c (pnm_skip_whitespace): Don't read over the end of
	the buffer if '#' appears at the very end.  (#167141, Doug Morgan)
This commit is contained in:
Matthias Clasen
2005-02-16 03:38:22 +00:00
committed by Matthias Clasen
parent 11ea4f5123
commit 5fcc15abbe
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2005-02-15 Matthias Clasen <mclasen@redhat.com>
* io-pnm.c (pnm_skip_whitespace): Don't read over the end of
the buffer if '#' appears at the very end. (#167141, Doug Morgan)
2005-02-05 Hans Breuer <hans@breuer.org>
* makefile.msc : rule for gdk_pixbuf.def

View File

@@ -192,7 +192,7 @@ pnm_skip_whitespace (PnmIOBuffer *inbuf, GError **error)
for ( ; *inptr != '\n' && inptr < inend; inptr++)
;
if ( *inptr != '\n' ) {
if ( inptr == inend || *inptr != '\n' ) {
/* couldn't read whole comment */
return PNM_SUSPEND;
}