# HG changeset patch # User Matti Hamalainen # Date 1527189575 -10800 # Node ID f31b77416a8342cc8f91be29638505022bf52bf4 # Parent a549d33d543ae440e23a7c504da7c9719303a180 gfxconv bailed out prematurely for probed inputs. Fixed. diff -r a549d33d543a -r f31b77416a83 tools/gfxconv.c --- a/tools/gfxconv.c Wed May 16 15:42:24 2018 +0300 +++ b/tools/gfxconv.c Thu May 24 22:19:35 2018 +0300 @@ -1709,6 +1709,7 @@ if (res == DMERR_OK) optInFormat = FFMT_BITMAP; else + if (optInFormat == FFMT_BITMAP) { dmErrorMsg("Could not decode input image: %s.\n", dmErrorStr(res)); goto error;