ID: 33220 Updated by: [EMAIL PROTECTED] Reported By: phpbugs at pureftpd dot org Status: Assigned Bug Type: GD related Operating System: * PHP Version: 5CVS-2005-08-17 Assigned To: pajoye New Comment:
I've made a patch to fix this problem: http://mega.ist.utl.pt/~ncpl/php_gd_patch.txt The problem: GetDataBlock_() returns -1 on error, but most calls to that function were checking only == 0, thus creating the infinite loop. changing those to <=0 fixes the problems. Previous Comments: ------------------------------------------------------------------------ [2005-08-22 17:45:42] [EMAIL PROTECTED] Pierre, are you going to do something for this bug? ------------------------------------------------------------------------ [2005-06-02 15:11:16] phpbugs at pureftpd dot org Description: ------------ The following (invalid) picture triggers an infinite loop in gdImageCreateFromGif() with 100% CPU usage. Tested on Linux and OpenBSD, PHP4 with GD 1 and PHP5 with built-in GD. Reproduce code: --------------- <?php imagecreatefromgif('kaboom-gd.gif'); ?> Get kaboom-gd.gif from ftp://ftp.00f.net/misc/kaboom-gd.gif Expected result: ---------------- No 100% CPU usage. Actual result: -------------- 100% CPU usage, infinite loop. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=33220&edit=1
