diff options
| author | Marcus Boerger <helly@php.net> | 2005-10-10 06:09:25 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2005-10-10 06:09:25 +0000 |
| commit | 656f02fada180b188caa50a1861b0a44510d97d1 (patch) | |
| tree | 15dca0076f47a5d8fcbbc061a862d13f1eb8a43f | |
| parent | 036f28f11504cad8fc0c5c18488702181c44a762 (diff) | |
| download | php-git-656f02fada180b188caa50a1861b0a44510d97d1.tar.gz | |
- MFH Fix Logic
| -rw-r--r-- | ext/exif/exif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 5ec0542073..dca6d85201 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -3035,7 +3035,7 @@ static int exif_process_IFD_in_JPEG(image_info_type *ImageInfo, char *dir_start, * Ignore IFD2 if it purportedly exists */ if (section_index == SECTION_THUMBNAIL) { - return FALSE; + return TRUE; } /* * Hack to make it process IDF1 I hope |
