helly Sat Nov 4 20:46:22 2006 UTC Modified files: /php-src/ext/exif exif.c Log: - Make parameter parsing api check happy http://cvs.php.net/viewvc.cgi/php-src/ext/exif/exif.c?r1=1.184&r2=1.185&diff_format=u Index: php-src/ext/exif/exif.c diff -u php-src/ext/exif/exif.c:1.184 php-src/ext/exif/exif.c:1.185 --- php-src/ext/exif/exif.c:1.184 Tue Oct 10 22:21:36 2006 +++ php-src/ext/exif/exif.c Sat Nov 4 20:46:21 2006 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: exif.c,v 1.184 2006/10/10 22:21:36 tony2001 Exp $ */ +/* $Id: exif.c,v 1.185 2006/11/04 20:46:21 helly Exp $ */ /* ToDos * @@ -139,7 +139,7 @@ }; /* }}} */ -#define EXIF_VERSION "1.4 $Id: exif.c,v 1.184 2006/10/10 22:21:36 tony2001 Exp $" +#define EXIF_VERSION "1.4 $Id: exif.c,v 1.185 2006/11/04 20:46:21 helly Exp $" /* {{{ PHP_MINFO_FUNCTION */ @@ -3984,7 +3984,7 @@ Reads the embedded thumbnail */ PHP_FUNCTION(exif_thumbnail) { - zval *p_width, *p_height, *p_imagetype; + zval *p_width = 0, *p_height = 0, *p_imagetype = 0; char *p_name; int p_name_len, ret, arg_c = ZEND_NUM_ARGS(); image_info_type ImageInfo;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php