sim-card
/
qemu
Archived
10
0
Fork 0

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>
This commit is contained in:
Mark McLoughlin 2009-10-06 12:16:52 +01:00 committed by Anthony Liguori
parent 32a8e14a0b
commit 3cd67992f5
1 changed files with 1 additions and 1 deletions

2
vl.c
View File

@ -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) :