| Submitter | Gerd Hoffmann |
|---|---|
| Date | March 23, 2012, 9:12 a.m. |
| Message ID | <1332493940-19581-1-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/148428/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/ui/spice-core.c b/ui/spice-core.c index a468524..50c2765 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -690,7 +690,7 @@ void qemu_spice_init(void) qemu_opt_foreach(opts, add_channel, &tls_port, 0); #if SPICE_SERVER_VERSION >= 0x000a02 /* 0.10.2 */ - spice_server_set_name(spice_server, qemu_name); + spice_server_set_name(spice_server, qemu_name ?: ""); spice_server_set_uuid(spice_server, qemu_uuid); #endif
spice_server_set_name can't handle the case of getting NULL passed in. Add a check and pass in an empty string instead. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- ui/spice-core.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)