diff options
| author | Pierre Joye <pajoye@php.net> | 2010-05-05 13:51:54 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2010-05-05 13:51:54 +0000 |
| commit | 754cb92b2b9ab0b20a85e39bef9e05864a3a071f (patch) | |
| tree | 2dd1c0b3cbb2d0d0324c5306b1f780f57636e4d8 | |
| parent | bd2f9d56ec2e84ffdc0e022af2e94d8652ccfa45 (diff) | |
| download | php-git-754cb92b2b9ab0b20a85e39bef9e05864a3a071f.tar.gz | |
- nuke unused vars
| -rw-r--r-- | ext/standard/image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index a622716600..73b6f76ee9 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -1296,8 +1296,8 @@ PHPAPI int php_getimagetype(php_stream * stream, char *filetype TSRMLS_DC) static void php_getimagesize_from_stream(php_stream *stream, zval **info, INTERNAL_FUNCTION_PARAMETERS) /* {{{ */ { - char *arg1, *temp; - int arg1_len, itype = 0, argc = ZEND_NUM_ARGS(); + char *temp; + int itype = 0; struct gfxinfo *result = NULL; if (!stream) { |
