remote: convert VIR_FREE to g_free in other functions that free their arg

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Laine Stump 2021-02-09 12:25:52 -05:00
parent c80efb9b60
commit d835c0affe
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ int daemonFreeClientStream(virNetServerClientPtr client,
}
virObjectUnref(stream->st);
VIR_FREE(stream);
g_free(stream);
return ret;
}