Skip to content

Commit

Permalink
fix ZTS build
Browse files Browse the repository at this point in the history
  • Loading branch information
tony2001 committed Dec 8, 2010
1 parent 755c2cd commit e89362b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/exif/exif.c
Original file line number Diff line number Diff line change
Expand Up @@ -2648,7 +2648,7 @@ static int exif_process_user_comment(image_info_type *ImageInfo, char **pszInfoP
ByteCount,
ImageInfo->encode_unicode,
decode
TSRMLS_DC) != 0) {
TSRMLS_CC) != 0) {
len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount);
}
return len;
Expand All @@ -2668,7 +2668,7 @@ static int exif_process_user_comment(image_info_type *ImageInfo, char **pszInfoP
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;
Expand Down Expand Up @@ -2707,7 +2707,7 @@ static int exif_process_unicode(image_info_type *ImageInfo, xp_field_type *xp_fi
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;
Expand Down

0 comments on commit e89362b

Please sign in to comment.