revert to use of g_free to make future qemu integrations easier (#695)
* revert to use of g_free to make future qemu integrations easier * bracing
This commit is contained in:

committed by
Nguyen Anh Quynh

parent
6a2eb14ff3
commit
fccbcfd4c2
@ -144,6 +144,6 @@ static void qstring_destroy_obj(QObject *obj)
|
||||
|
||||
assert(obj != NULL);
|
||||
qs = qobject_to_qstring(obj);
|
||||
free(qs->string);
|
||||
free(qs);
|
||||
g_free(qs->string);
|
||||
g_free(qs);
|
||||
}
|
||||
|
Reference in New Issue
Block a user