aboutsummaryrefslogtreecommitdiff
path: root/libgui/png.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-08 14:51:11 +0100
committerMarvin Borner2021-01-08 14:51:11 +0100
commit01c570789d7f9ccc1521b791903c8a499b0f6323 (patch)
treee5275dbbc207db6be843df918b3944cc822d0819 /libgui/png.c
parent52920b03e996cf60b2665772837bfa0f1661a430 (diff)
Kinda working VFS implementation
Diffstat (limited to 'libgui/png.c')
-rw-r--r--libgui/png.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libgui/png.c b/libgui/png.c
index 55999d9..2db6e4d 100644
--- a/libgui/png.c
+++ b/libgui/png.c
@@ -1166,15 +1166,17 @@ struct bmp *png_load(const char *path)
if (!png)
return NULL;
- void *buf = read(path);
+ void *buf = sread(path);
if (!png) {
SET_ERROR(png, PNG_ENOTFOUND);
png_free(png);
return NULL;
}
+ struct stat s = { 0 };
+ stat(path, &s);
png->source.buffer = buf;
- png->source.size = stat(path);
+ png->source.size = s.size;
png->source.owning = 1;
png_decode(png);
@@ -1188,6 +1190,7 @@ struct bmp *png_load(const char *path)
bmp->pitch = png->width * (bmp->bpp >> 3);
png_free(png);
+ free(buf);
return bmp;
}