This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository legacy-imlib2.

View the commit online.

commit 2ad8d7d785a1e6f28310cab3b668b2ffb9e23047
Author: Kim Woelders <[email protected]>
AuthorDate: Sat Feb 4 09:50:15 2023 +0100

    JPG saver: Avoid potential clobber warning
---
 src/modules/loaders/loader_jpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/loaders/loader_jpeg.c b/src/modules/loaders/loader_jpeg.c
index 906e8c1..436ccfd 100644
--- a/src/modules/loaders/loader_jpeg.c
+++ b/src/modules/loaders/loader_jpeg.c
@@ -274,7 +274,7 @@ _save(ImlibImage * im)
    /* set up error handling */
    jcs.err = _jdata_init(&jdata);
    if (sigsetjmp(jdata.setjmp_buffer, 1))
-      goto quit;
+      QUIT_WITH_RC(LOAD_FAIL);
 
    /* setup compress params */
    jpeg_create_compress(&jcs);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to