]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
remote: convert VIR_FREE to g_free in other functions that free their arg
authorLaine Stump <laine@redhat.com>
Tue, 9 Feb 2021 17:25:52 +0000 (12:25 -0500)
committerLaine Stump <laine@redhat.com>
Fri, 12 Feb 2021 17:10:38 +0000 (12:10 -0500)
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
src/remote/remote_daemon_stream.c

index b4a3cb6741963727d166e1326617f63451812953..57816eb10e3a28faed30cdbfa779fe2dc0e312ef 100644 (file)
@@ -419,7 +419,7 @@ int daemonFreeClientStream(virNetServerClientPtr client,
     }
 
     virObjectUnref(stream->st);
-    VIR_FREE(stream);
+    g_free(stream);
 
     return ret;
 }