瀏覽代碼

Fix copy memory on WebP size check

DarthSim 4 年之前
父節點
當前提交
ca97c715a4
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      process.go

+ 3 - 3
process.go

@@ -429,10 +429,10 @@ func transformImage(ctx context.Context, img *vipsImage, data []byte, po *proces
 				return err
 			}
 			logWarning("WebP dimension size is limited to %d. The image is rescaled to %dx%d", int(webpMaxDimension), img.Width(), img.Height())
-		}
 
-		if err = copyMemoryAndCheckTimeout(ctx, img); err != nil {
-			return err
+			if err = copyMemoryAndCheckTimeout(ctx, img); err != nil {
+				return err
+			}
 		}
 	}