]> git.proxmox.com Git - qemu.git/commitdiff
Don't assign a static string to NICInfo::model
authorMark McLoughlin <markmc@redhat.com>
Tue, 6 Oct 2009 11:16:52 +0000 (12:16 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 6 Oct 2009 19:36:10 +0000 (14:36 -0500)
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vl.c

diff --git a/vl.c b/vl.c
index 3d2314025ce116140eacc77d0fdcdb092f48b0fd..776dd0e577cf2911e408a141352ab71c4a20aea2 100644 (file)
--- 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) :