diff options
author | Marvin Borner | 2021-01-09 22:29:05 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-09 22:29:05 +0100 |
commit | f27a5f8af9fc5a16b80a7d6646e44d718b0efd7d (patch) | |
tree | a06eb447cf8452245e7c8f851b17e07e0f4dcb2c /libgui/png.c | |
parent | dcd28d5246eec562c195fba07c7bd4ce7b69c94b (diff) |
Finding memory leaks is SO exhausting argh
Diffstat (limited to 'libgui/png.c')
-rw-r--r-- | libgui/png.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libgui/png.c b/libgui/png.c index 2db6e4d..ad65eba 100644 --- a/libgui/png.c +++ b/libgui/png.c @@ -1125,9 +1125,8 @@ static struct png *png_new(void) void png_free(struct png *png) { // Deallocate image buffer - /* if (png->buffer != NULL) { */ - /* free(png->buffer); */ - /* } */ + if (png->buffer) + free(png->buffer); // Deallocate source buffer, if necessary png_free_source(png); @@ -1167,7 +1166,7 @@ struct bmp *png_load(const char *path) return NULL; void *buf = sread(path); - if (!png) { + if (!buf) { SET_ERROR(png, PNG_ENOTFOUND); png_free(png); return NULL; @@ -1190,7 +1189,6 @@ struct bmp *png_load(const char *path) bmp->pitch = png->width * (bmp->bpp >> 3); png_free(png); - free(buf); return bmp; } |