diff options
Diffstat (limited to 'gio/glocalfile.c')
-rw-r--r-- | gio/glocalfile.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gio/glocalfile.c b/gio/glocalfile.c index faa065412..1e7bee618 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -182,13 +182,10 @@ g_local_file_class_init (GLocalFileClass *klass) } void -_g_local_file_deinit (void) +g_local_file_cleanup (void) { - if (local_writable_attributes != NULL) - { - g_file_attribute_info_list_unref (local_writable_attributes); - local_writable_attributes = NULL; - } + g_clear_pointer (&local_writable_attributes, + g_file_attribute_info_list_unref); } static void |