1
0
mirror of https://github.com/php/php-src.git synced 2026-04-04 06:32:49 +02:00

Merge branch 'PHP-5.5'

* PHP-5.5:
  fix #64725, wrong res check
This commit is contained in:
Pierre Joye
2013-04-27 17:52:38 +02:00

View File

@@ -5582,7 +5582,7 @@ PHP_FUNCTION(imageaffinematrixget)
RETURN_FALSE;
}
if (res = GD_FALSE) {
if (res == GD_FALSE) {
RETURN_FALSE;
} else {
array_init(return_value);