diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 03:08:54 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 33d6c7101cee251b91b4f01b2ddde55b4b2d50d9 (patch) | |
tree | 49ae675f7d68b90415db69bfcd21fe84fa74013d /hardinfo2/util.c | |
parent | 1dc1f18804969c191346b064cd232d3f5959b13c (diff) |
FIX back ports
Diffstat (limited to 'hardinfo2/util.c')
-rw-r--r-- | hardinfo2/util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hardinfo2/util.c b/hardinfo2/util.c index 5e3b00aa..e12963c0 100644 --- a/hardinfo2/util.c +++ b/hardinfo2/util.c @@ -974,7 +974,10 @@ static GSList *modules_load(gchar ** module_list) } filenames = g_list_delete_link(filenames, item); } +#if GLIB_CHECK_VERSION(2,44,0) + //FIXME change this to not use g_steal_pointer g_list_free_full (g_steal_pointer (&filenames), g_object_unref); +#endif g_dir_close(dir); } |