aboutsummaryrefslogtreecommitdiff
path: root/libgui/png.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-09 22:29:05 +0100
committerMarvin Borner2021-01-09 22:29:05 +0100
commitf27a5f8af9fc5a16b80a7d6646e44d718b0efd7d (patch)
treea06eb447cf8452245e7c8f851b17e07e0f4dcb2c /libgui/png.c
parentdcd28d5246eec562c195fba07c7bd4ce7b69c94b (diff)
Finding memory leaks is SO exhausting argh
Diffstat (limited to 'libgui/png.c')
-rw-r--r--libgui/png.c8
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;
}