From: foobar Date: Thu, 9 Jan 2003 00:15:33 +0000 (+0000) Subject: Fix the ZTS build. X-Git-Tag: PHP_5_0_dev_before_13561_fix~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66fd5008ab10fa40a8261e2cee50622567e4e600;p=php Fix the ZTS build. --- diff --git a/ext/standard/image.c b/ext/standard/image.c index 20571ea6a1..ad7eecd1be 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -953,7 +953,7 @@ PHPAPI int php_getimagetype(php_stream * stream, char *filetype TSRMLS_DC) if (!memcmp(filetype, php_sig_iff, 4)) { return IMAGE_FILETYPE_IFF; } - if (php_get_wbmp(stream, NULL, 1 TSRMLS_DC)) { + if (php_get_wbmp(stream, NULL, 1 TSRMLS_CC)) { return IMAGE_FILETYPE_WBMP; }