From 22cdc2b75ea08bb6c1dc56284913573fdcf560b3 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg 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: https://develop.svn.wordpress.org/trunk@7150 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 6e352e5d8f..6739d3b1c4 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],