iliaa Thu Apr 3 20:34:08 2003 EDT Modified files: (Branch: PHP_4_3) /php4/ext/gd gd.c Log: MFH Index: php4/ext/gd/gd.c diff -u php4/ext/gd/gd.c:1.221.2.22 php4/ext/gd/gd.c:1.221.2.23 --- php4/ext/gd/gd.c:1.221.2.22 Thu Apr 3 19:16:54 2003 +++ php4/ext/gd/gd.c Thu Apr 3 20:34:08 2003 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: gd.c,v 1.221.2.22 2003/04/04 00:16:54 iliaa Exp $ */ +/* $Id: gd.c,v 1.221.2.23 2003/04/04 01:34:08 iliaa Exp $ */ /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center, Cold Spring Harbor Labs. */ @@ -2862,7 +2862,7 @@ dstH = Z_LVAL_PP(DH); dstW = Z_LVAL_PP(DW); - if (dstW < 0 || dstH < 0 || srcW < 0 || srcH < 0) { + if (dstW <= 0 || dstH <= 0 || srcW <= 0 || srcH <= 0) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid image dimensions"); RETURN_FALSE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php