]> Git Repo - qemu.git/blobdiff - check-qstring.c
hw/pl110.c: Add post-load hook to invalidate display
[qemu.git] / check-qstring.c
index c308a63eaf8831894590ba3fed60a5d4838e3c96..93bd4757b7fe20bf642595073f50b8fb4836c760 100644 (file)
@@ -5,6 +5,9 @@
  *
  * Authors:
  *  Luiz Capitulino <[email protected]>
+ *
+ * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
+ * See the COPYING.LIB file in the top-level directory.
  */
 #include <check.h>
 
@@ -29,8 +32,8 @@ START_TEST(qstring_from_str_test)
     fail_unless(qobject_type(QOBJECT(qstring)) == QTYPE_QSTRING);
 
     // destroy doesn't exit yet
-    qemu_free(qstring->string);
-    qemu_free(qstring);
+    g_free(qstring->string);
+    g_free(qstring);
 }
 END_TEST
 
This page took 0.02894 seconds and 4 git commands to generate.