aboutsummaryrefslogtreecommitdiff
path: root/jpg.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-10-01 20:02:57 +0200
committerDaniel Eklöf <daniel@ekloef.se>2020-10-01 20:02:57 +0200
commitd8f96450bc8bb70012b1db9f8bd44690e36ef048 (patch)
tree1fe45ac7d1545d313c557d293fdb1aaff603a7e9 /jpg.c
parentc538b6384b4cd71b9c567e4982b53184f8f7a153 (diff)
downloadwbg-d8f96450bc8bb70012b1db9f8bd44690e36ef048.tar.gz
jpg: fix overly large allocation of the image backing buffer
Diffstat (limited to 'jpg.c')
-rw-r--r--jpg.c2
1 files changed, 1 insertions, 1 deletions
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;