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.
This commit is contained in:
Kim Woelders 2023-08-18 12:18:43 +02:00
parent 570c50d75a
commit f16bb23864
1 changed files with 1 additions and 1 deletions

View File

@ -128,4 +128,4 @@ _load(ImlibImage * im, int load_data)
return rc;
}
IMLIB_LOADER(_formats, _load, NULL);
IMLIB_LOADER_KEEP(_formats, _load, NULL);