* [ptxdist] [PATCH] fbv: Fix build error due to direct access to jmpbuf
@ 2017-11-23 11:32 Gavin Schenk
0 siblings, 0 replies; only message in thread
From: Gavin Schenk @ 2017-11-23 11:32 UTC (permalink / raw)
To: ptxdist; +Cc: Gavin Schenk
The build fails with "dereferencing pointer to incomplete type" when
accessing the jmpbuf ptr directly.
Using the macro png_jmpbuf(...) fixes this compiler error.
Signed-off-by: Gavin Schenk <g.schenk@eckelmann.de>
---
png.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/png.c b/png.c
index 8a0c62073dfb..3f5afddbca5c 100644
--- a/png.c
+++ b/png.c
@@ -69,7 +69,7 @@ int fh_png_load(char *name,unsigned char *buffer, unsigned char ** alpha,int x,i
fclose(fh); return(FH_ERROR_FORMAT);
}
rp=0;
- if (setjmp(png_ptr->jmpbuf))
+ if (setjmp(png_jmpbuf(png_ptr)))
{
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
if(rp) free(rp);
@@ -161,7 +161,7 @@ int fh_png_getsize(char *name,int *x,int *y)
fclose(fh); return(FH_ERROR_FORMAT);
}
rp=0;
- if (setjmp(png_ptr->jmpbuf))
+ if (setjmp(png_jmpbuf(png_ptr)))
{
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
if(rp) free(rp);
--
2.15.0
Eckelmann AG
Vorstand: Dipl.-Ing. Peter Frankenbach (Sprecher) Dipl.-Wi.-Ing. Philipp Eckelmann
Dr.-Ing. Marco Münchhof Dr.-Ing. Frank Uhlemann
Vorsitzender des Aufsichtsrats: Hubertus G. Krossa
Stv. Vorsitzender des Aufsichtsrats: Dr.-Ing. Gerd Eckelmann
Sitz der Gesellschaft: Berliner Str. 161, 65205 Wiesbaden, Amtsgericht Wiesbaden HRB 12636
http://www.eckelmann.de
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-11-23 11:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-23 11:32 [ptxdist] [PATCH] fbv: Fix build error due to direct access to jmpbuf Gavin Schenk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox