| Submitter | Stefan Hajnoczi |
|---|---|
| Date | Jan. 30, 2013, 10:24 a.m. |
| Message ID | <1359541470-30775-14-git-send-email-stefanha@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/216830/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/ui/spice-core.c b/ui/spice-core.c index 3f2c565..bcc4199 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -848,8 +848,8 @@ static int qemu_spice_set_ticket(bool fail_if_conn, bool disconnect_if_conn) int qemu_spice_set_passwd(const char *passwd, bool fail_if_conn, bool disconnect_if_conn) { - free(auth_passwd); - auth_passwd = strdup(passwd); + g_free(auth_passwd); + auth_passwd = g_strdup(passwd); return qemu_spice_set_ticket(fail_if_conn, disconnect_if_conn); }