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 f16bb238643467dfebec7bbbc3a1c50de9df8328
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Aug 18 12:18:43 2023 +0200

    RAW loader: Don't unload loader
    
    Running with valgrind or asan seems to show that unloading/reloading the
    loader causes memory leaks. Not dlcose()'ing the module avoids this.
---
 src/modules/loaders/loader_raw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/loaders/loader_raw.c b/src/modules/loaders/loader_raw.c
index 77cb7d3..b511aa6 100644
--- a/src/modules/loaders/loader_raw.c
+++ b/src/modules/loaders/loader_raw.c
@@ -128,4 +128,4 @@ _load(ImlibImage * im, int load_data)
    return rc;
 }
 
-IMLIB_LOADER(_formats, _load, NULL);
+IMLIB_LOADER_KEEP(_formats, _load, NULL);

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

Reply via email to