diff options
Diffstat (limited to 'games-sports/torcs/files/torcs-1.3.1-libpng15.patch')
-rw-r--r-- | games-sports/torcs/files/torcs-1.3.1-libpng15.patch | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/games-sports/torcs/files/torcs-1.3.1-libpng15.patch b/games-sports/torcs/files/torcs-1.3.1-libpng15.patch index 6b09ce2a41c8..94f6d6c471e9 100644 --- a/games-sports/torcs/files/torcs-1.3.1-libpng15.patch +++ b/games-sports/torcs/files/torcs-1.3.1-libpng15.patch @@ -1,20 +1,20 @@ --- a/src/libs/tgfclient/img.cpp +++ b/src/libs/tgfclient/img.cpp @@ -98,7 +98,7 @@ - return (unsigned char *)NULL; - } - + return (unsigned char *)NULL; + } + - if (setjmp(png_ptr->jmpbuf)) + if (setjmp(png_jmpbuf(png_ptr))) - { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); + { + /* Free all of the memory associated with the png_ptr and info_ptr */ + png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); @@ -229,7 +229,7 @@ - return -1; - } - + return -1; + } + - if (setjmp(png_ptr->jmpbuf)) { + if (setjmp(png_jmpbuf(png_ptr))) { - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp); - return -1; + png_destroy_write_struct(&png_ptr, &info_ptr); + fclose(fp); + return -1; |