Check for overflow. (#306394, Morten Welinder)
2005-06-08 Matthias Clasen <mclasen@redhat.com> * io-pnm.c (pnm_read_next_value): Check for overflow. (#306394, Morten Welinder)
This commit is contained in:
committed by
Matthias Clasen
parent
70c0c38ff8
commit
b839a7b0c6
@ -1,3 +1,8 @@
|
||||
2005-06-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* io-pnm.c (pnm_read_next_value): Check for overflow.
|
||||
(#306394, Morten Welinder)
|
||||
|
||||
2005-05-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* io-bmp.c: Accept the 108 byte header of BMP v4. (#168799)
|
||||
|
||||
@ -245,7 +245,7 @@ pnm_read_next_value (PnmIOBuffer *inbuf, gint max_length, guint *value, GError *
|
||||
|
||||
/* get the value */
|
||||
result = strtol (buf, &endptr, 10);
|
||||
if (*endptr != '\0' || result < 0) {
|
||||
if (*endptr != '\0' || result < 0 || result > G_MAXUINT) {
|
||||
g_set_error (error,
|
||||
GDK_PIXBUF_ERROR,
|
||||
GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
|
||||
|
||||
Reference in New Issue
Block a user