]> granicus.if.org Git - php/commitdiff
Fixed bug #54121 (error message format string typo).
authorIlia Alshanetsky <iliaa@php.net>
Tue, 12 Apr 2011 18:33:08 +0000 (18:33 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Tue, 12 Apr 2011 18:33:08 +0000 (18:33 +0000)
NEWS
ext/exif/exif.c

diff --git a/NEWS b/NEWS
index 2e0029ee07a2db7874ea3cf517a2b5bc54e74097..3ad19459fac1a449dfcfb247562cf54a6b08032a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -34,6 +34,9 @@ PHP                                                                        NEWS
 - DBA extension:
   . Fixed bug #54242 (dba_insert returns true if key already exists). (Felipe)
 
+- Exif extesion:
+  . Fixed bug #54121 (error message format string typo). (Ilia)
+
 - Filter extension:
   . Fixed bug #53037 (FILTER_FLAG_EMPTY_STRING_NULL is not implemented). (Ilia)
   
index 9593f70d2c73002c2e95b636f5aee1d779e936fa..9458987c2e9f7c8435f8f4c2ab4f79d9391c423d 100644 (file)
@@ -2909,7 +2909,7 @@ static int exif_process_IFD_TAG(image_info_type *ImageInfo, char *dir_entry, cha
                        fgot = php_stream_tell(ImageInfo->infile);
                        if (fgot!=offset_val) {
                                EFREE_IF(outside);
-                               exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_WARNING, "Wrong file pointer: 0x%08X != 0x08X", fgot, offset_val);
+                               exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_WARNING, "Wrong file pointer: 0x%08X != 0x%08X", fgot, offset_val);
                                return FALSE;
                        }
                        fgot = php_stream_read(ImageInfo->infile, value_ptr, byte_count);