|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-07-01 18:00 UTC] cstdenis at fanart-central dot net
[2005-08-29 21:21 UTC] cstdenis at fanart-central dot net
[2005-10-23 10:31 UTC] mike@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 13:00:01 2025 UTC |
Description: ------------ if the path passed to imagick_readimage is not valid it causes a crash (pid 94741 (httpd), uid 80: exited on signal 10) Also, if the path contains a URLencoded space (%20) the same crash also results. Reproduce code: --------------- //crash, invalid URL imagick_readimage("5"); //works imagick_readimage("http://images.fanart-central.net/c/cstdenis/236541.jpg"); //crash, vaid url, but contains URLencoded space. imagick_readimage("http://images.fanart-central.net/c/cstdenis/236%20541.jpg"); Expected result: ---------------- invalid URL should give error, urlencoded spaces should work. Actual result: -------------- both cause crash.