diff options
| author | Felipe Pena <felipensp@gmail.com> | 2012-06-03 19:02:00 -0300 |
|---|---|---|
| committer | Felipe Pena <felipensp@gmail.com> | 2012-06-03 19:02:00 -0300 |
| commit | 9434f5e41fd321e9e8a893451c6fabb3c658fa27 (patch) | |
| tree | 505281d47031c559cec575cd70d5ec9c6545999c | |
| parent | 913b2c700f630bf6b8d74c0fb675d05aaac9e6d6 (diff) | |
| parent | e59b6dc0ae803d49c3f620818285f98dfb61fd57 (diff) | |
| download | php-git-9434f5e41fd321e9e8a893451c6fabb3c658fa27.tar.gz | |
Merge commit 'e59b6dc0ae803d49c3f620818285f98dfb61fd57'
| -rw-r--r-- | ext/exif/exif.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index b490ded55e..9db6674742 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -3254,7 +3254,7 @@ static void exif_process_APP12(image_info_type *ImageInfo, char *buffer, size_t if ((l1 = php_strnlen(buffer+2, length-2)) > 0) { exif_iif_add_tag(ImageInfo, SECTION_APP12, "Company", TAG_NONE, TAG_FMT_STRING, l1, buffer+2 TSRMLS_CC); if (length > 2+l1+1) { - l2 = php_strnlen(buffer+2+l1+1, length-2-l1+1); + l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1); exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1 TSRMLS_CC); } } @@ -3404,6 +3404,10 @@ static int exif_scan_JPEG_header(image_info_type *ImageInfo TSRMLS_DC) case M_SOF13: case M_SOF14: case M_SOF15: + if ((itemlen - 2) < 6) { + return FALSE; + } + exif_process_SOFn(Data, marker, &sof_info); ImageInfo->Width = sof_info.width; ImageInfo->Height = sof_info.height; |
