tony2001                                 Wed, 08 Dec 2010 12:35:25 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=306078

Log:
fix ZTS build

Changed paths:
    U   php/php-src/trunk/ext/exif/exif.c

Modified: php/php-src/trunk/ext/exif/exif.c
===================================================================
--- php/php-src/trunk/ext/exif/exif.c   2010-12-08 11:27:34 UTC (rev 306077)
+++ php/php-src/trunk/ext/exif/exif.c   2010-12-08 12:35:25 UTC (rev 306078)
@@ -2648,7 +2648,7 @@
                                        ByteCount,
                                        ImageInfo->encode_unicode,
                                        decode
-                                       TSRMLS_DC) != 0) {
+                                       TSRMLS_CC) != 0) {
                                len = exif_process_string_raw(pszInfoPtr, 
szValuePtr, ByteCount);
                        }
                        return len;
@@ -2668,7 +2668,7 @@
                                        ByteCount,
                                        ImageInfo->encode_jis,
                                        ImageInfo->motorola_intel ? 
ImageInfo->decode_jis_be : ImageInfo->decode_jis_le
-                                       TSRMLS_DC) != 0) {
+                                       TSRMLS_CC) != 0) {
                                len = exif_process_string_raw(pszInfoPtr, 
szValuePtr, ByteCount);
                        }
                        return len;
@@ -2707,7 +2707,7 @@
                        ByteCount,
                        ImageInfo->encode_unicode,
                        ImageInfo->motorola_intel ? 
ImageInfo->decode_unicode_be : ImageInfo->decode_unicode_le
-                       TSRMLS_DC) != 0) {
+                       TSRMLS_CC) != 0) {
                xp_field->size = exif_process_string_raw(&xp_field->value, 
szValuePtr, ByteCount);
        }
        return xp_field->size;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to