]> git.0d.be Git - empathy.git/commitdiff
mock-pkcs11: use g_hash_table_unref()
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 6 Jan 2014 14:27:45 +0000 (15:27 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 6 Jan 2014 14:41:30 +0000 (15:41 +0100)
Same effect here but g_hash_table_destroy() is banned from our "coding style"
check tools.

https://bugzilla.gnome.org/show_bug.cgi?id=721484

tests/mock-pkcs11.c

index 1813a7e9b04ecedc3eb825864767495678b1a593..a2ee648bbc40caab87dd06867ba9b5f50f61b5fd 100644 (file)
@@ -146,13 +146,13 @@ mock_C_Finalize (CK_VOID_PTR reserved)
 
   initialized = FALSE;
 
-  g_hash_table_destroy (the_certificates);
+  g_hash_table_unref (the_certificates);
   the_certificates = NULL;
 
-  g_hash_table_destroy (the_assertions);
+  g_hash_table_unref (the_assertions);
   the_assertions = NULL;
 
-  g_hash_table_destroy (the_sessions);
+  g_hash_table_unref (the_sessions);
   the_sessions = NULL;
 
   return CKR_OK;