From d8f96450bc8bb70012b1db9f8bd44690e36ef048 Mon Sep 17 00:00:00 2001 From: Daniel Eklöf Date: Thu, 1 Oct 2020 20:02:57 +0200 Subject: jpg: fix overly large allocation of the image backing buffer --- jpg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpg.c b/jpg.c index 685aa39..a3797b1 100644 --- a/jpg.c +++ b/jpg.c @@ -64,7 +64,7 @@ jpg_load(const char *path) LOG_DBG("width=%d, height=%d, stride=%d, components=%d", width, height, stride, cinfo.output_components); - image_data = malloc(height * width * stride); + image_data = malloc(height * stride); if (image_data == NULL) goto err; -- cgit v1.2.3