1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 16:38:25 +02:00

- MFH: Added a notice to getimagesize in case zlib is not available and a

compressed SWF movie has been passed to the function.
This commit is contained in:
Derick Rethans
2004-08-11 12:31:37 +00:00
parent 20181fde3d
commit f65e4feda4
+5 -2
View File
@@ -1288,11 +1288,14 @@ PHP_FUNCTION(getimagesize)
case IMAGE_FILETYPE_SWF:
result = php_handle_swf(stream TSRMLS_CC);
break;
#if HAVE_ZLIB && !defined(COMPILE_DL_ZLIB)
case IMAGE_FILETYPE_SWC:
#if HAVE_ZLIB && !defined(COMPILE_DL_ZLIB)
result = php_handle_swc(stream TSRMLS_CC);
break;
#else
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "The image is a compressed SWF file, but you do not have a static version of the zlib extension enabled.");
#endif
break;
case IMAGE_FILETYPE_PSD:
result = php_handle_psd(stream TSRMLS_CC);
break;