script-fu-dialog: fix memleak

This commit is contained in:
Simon Budig
2023-05-20 23:41:18 +02:00
parent a100bb7fcf
commit 7f10328777

View File

@ -69,6 +69,7 @@ get_length (GimpProcedureConfig *config)
pspecs = g_object_class_list_properties (G_OBJECT_GET_CLASS (config),
&n_pspecs);
g_debug ("length config: %d", n_pspecs);
g_free (pspecs);
return n_pspecs;
}