summary refs log tree commit diff stats
path: root/vl.c
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2009-10-06 12:16:52 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-06 14:36:10 -0500
commit3cd67992f5ed8f2afcf849ab9bf17ba730a89b92 (patch)
treeb83bbe525ed0b1e7bc092107fa75fdca69b75413 /vl.c
parent32a8e14a0b4070a6c389371ce5540238264cbf17 (diff)
downloadfocaccia-qemu-3cd67992f5ed8f2afcf849ab9bf17ba730a89b92.tar.gz
focaccia-qemu-3cd67992f5ed8f2afcf849ab9bf17ba730a89b92.zip
Don't assign a static string to NICInfo::model
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 3d2314025c..776dd0e577 100644
--- a/vl.c
+++ b/vl.c
@@ -2599,7 +2599,7 @@ static int usb_device_add(const char *devname, int is_hotplug)
 
         if (net_client_init(NULL, "nic", p) < 0)
             return -1;
-        nd_table[nic].model = "usb";
+        nd_table[nic].model = qemu_strdup("usb");
         dev = usb_net_init(&nd_table[nic]);
     } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
         dev = usb_bt_init(devname[2] ? hci_init(p) :