diff options
author | Stefan Weil <sw@weilnetz.de> | 2011-10-07 21:15:20 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-11-01 16:52:05 -0500 |
commit | ae878b172e8fe4a4237874de2d3bb879699d8af5 (patch) | |
tree | b71f0857c6fc2b4c1d2662787f550ff75b6ca10f /ui/vnc-tls.c | |
parent | e589728b6fffaa74f8d535dab5ad65700dc606bb (diff) |
ui/vnc: Fix use of free() instead of g_free()
Please note that mechlist still uses malloc / strdup / free.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui/vnc-tls.c')
-rw-r--r-- | ui/vnc-tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/vnc-tls.c b/ui/vnc-tls.c index ffbd1725a4..3aaa93928a 100644 --- a/ui/vnc-tls.c +++ b/ui/vnc-tls.c @@ -413,7 +413,7 @@ void vnc_tls_client_cleanup(struct VncState *vs) vs->tls.session = NULL; } vs->tls.wiremode = VNC_WIREMODE_CLEAR; - free(vs->tls.dname); + g_free(vs->tls.dname); } |