iliaa Thu Nov 7 20:08:02 2002 EDT Modified files: /php4/ext/exif exif.c Log: Removed duplicate assignment. Index: php4/ext/exif/exif.c diff -u php4/ext/exif/exif.c:1.117 php4/ext/exif/exif.c:1.118 --- php4/ext/exif/exif.c:1.117 Sat Oct 19 05:52:00 2002 +++ php4/ext/exif/exif.c Thu Nov 7 20:08:01 2002 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: exif.c,v 1.117 2002/10/19 09:52:00 helly Exp $ */ +/* $Id: exif.c,v 1.118 2002/11/08 01:08:01 iliaa Exp $ */ /* ToDos * @@ -109,7 +109,7 @@ }; /* }}} */ -#define EXIF_VERSION "1.4 $Id: exif.c,v 1.117 2002/10/19 09:52:00 helly Exp $" +#define EXIF_VERSION "1.4 $Id: exif.c,v 1.118 2002/11/08 01:08:01 iliaa Exp $" /* {{{ PHP_MINFO_FUNCTION */ @@ -4064,7 +4064,7 @@ RETURN_FALSE; } - itype = itype = php_getimagetype(stream, NULL TSRMLS_CC); + itype = php_getimagetype(stream, NULL TSRMLS_CC); php_stream_close(stream);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php