Your message dated Tue, 10 Feb 2026 23:01:54 -0500
with message-id
<caaajcma5lfe0es6qqfniyb56vprdy70cufvt8wzw5bb8g7h...@mail.gmail.com>
and subject line closing old gdk-pixbuf bugs
has caused the Debian Bug report #774771,
regarding Better error handling + cleanups
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
774771: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774771
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gdk-pixbuf
Version: 2.31.1-2
Tags: upstream patch
See patch for details. Thanks
Description: better error handling for jas_init and cleanup memory
Author: Mathieu Malaterre <[email protected]>
--- gdk-pixbuf-2.31.1.orig/gdk-pixbuf/io-jasper.c
+++ gdk-pixbuf-2.31.1/gdk-pixbuf/io-jasper.c
@@ -52,6 +52,7 @@ free_jasper_context (struct jasper_conte
jas_stream_close (context->stream);
context->stream = NULL;
}
+ jas_image_clearfmts();
g_free (context);
}
@@ -65,7 +66,8 @@ jasper_image_begin_load (GdkPixbufModule
struct jasper_context *context;
jas_stream_t *stream;
- jas_init ();
+ if(jas_init ())
+ return NULL;
stream = jas_stream_memopen (NULL, -1);
if (!stream) {
--- End Message ---
--- Begin Message ---
There have been many changes to Debian since this bug was originally
reported. If you are still experiencing this issue with Debian 13 (or
with Debian 12 or Testing or Unstable), please report a new bug.
Thank you,
Jeremy BĂcha
--- End Message ---