aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;