Remove exit()

This commit is contained in:
hooper114 2010-05-23 08:15:24 +00:00
parent 02945801ec
commit 554e2a25f3

View file

@ -64,7 +64,7 @@ static void writepng_error_handler(png_structp png_ptr, png_const_charp msg)
fprintf(stderr,
"writepng severe error: jmpbuf not recoverable; terminating.\n");
fflush(stderr);
exit(99);
return;
}
longjmp(graphic->jmpbuf, 1);
}