diff --git a/modules/color/color.module b/modules/color/color.module index dfdbce101b0..2558495c892 100644 --- a/modules/color/color.module +++ b/modules/color/color.module @@ -359,6 +359,9 @@ function _color_render_images($theme, &$info, &$paths, $palette) { // Blend over template imagecopy($target, $source, 0, 0, 0, 0, $width, $height); + // Clean up template image + imagedestroy($source); + // Cut out slices foreach ($info['slices'] as $file => $coord) { list($x, $y, $width, $height) = $coord; @@ -385,8 +388,7 @@ function _color_render_images($theme, &$info, &$paths, $palette) { $paths['map'][$file] = $base; } - // Clean up - imagedestroy($source); + // Clean up target buffer imagedestroy($target); }