From 6ecded2a95ee62eacfd1ce68e0b80d63e2a39fe0 Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 4 Mar 2008 04:23:35 +0000 Subject: [PATCH] Handle GD errors correctly during image resizing. Fixes #6087. Hat tip: tellyworth. git-svn-id: http://svn.automattic.com/wordpress/trunk@7150 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 6e352e5d8..6739d3b1c 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -235,7 +235,7 @@ function image_resize( $file, $max_w, $max_h, $crop=false, $suffix=null, $dest_p function image_make_intermediate_size($file, $width, $height, $crop=false) { if ( $width || $height ) { $resized_file = image_resize($file, $width, $height, $crop); - if ( $resized_file && $info = getimagesize($resized_file) ) { + if ( !is_wp_error($resized_file) && $resized_file && $info = getimagesize($resized_file) ) { return array( 'file' => basename( $resized_file ), 'width' => $info[0],