diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-10-01 20:03:23 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-10-01 20:03:23 +0200 |
commit | 1af2db7928029eb1ec7db3ee5b865815b22057de (patch) | |
tree | e0c3200114daa733eca16901a12a305d633d7250 /png.c | |
parent | d8f96450bc8bb70012b1db9f8bd44690e36ef048 (diff) | |
download | wbg-1af2db7928029eb1ec7db3ee5b865815b22057de.tar.gz |
main: open file once, in main, and log an error when we fail
Diffstat (limited to 'png.c')
-rw-r--r-- | png.c | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -15,20 +15,18 @@ #include "stride.h" pixman_image_t * -png_load(const char *path) +png_load(FILE *fp, const char *path) { pixman_image_t *pix = NULL; - FILE *fp = NULL; png_structp png_ptr = NULL; png_infop info_ptr = NULL; png_bytepp row_pointers = NULL; uint8_t *image_data = NULL; - /* open file and test for it being a png */ - if ((fp = fopen(path, "rb")) == NULL) { - //LOG_ERRNO("%s: failed to open", path); - goto err; + if (fseek(fp, 0, SEEK_SET) < 0) { + LOG_ERRNO("%s: failed to seek to beginning of file", path); + return NULL; } /* Verify PNG header */ @@ -136,8 +134,6 @@ err: free(row_pointers); if (png_ptr != NULL) png_destroy_read_struct(&png_ptr, &info_ptr, NULL); - if (fp != NULL) - fclose(fp); return pix; } |