diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-25 11:23:27 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-25 11:23:27 +0000 |
commit | 2bd7318c1a40cd2f2ae55382be3433ea384e8eff (patch) | |
tree | b3626dc8891c995c03cd6c33b5a3c3bd44e9c28e /hw/bt-hci.c | |
parent | be15b141e0dddd9f41e464ca98aef1b05b28cf6b (diff) |
Replace uses of strndup (a GNU extension) with Qemu pstrdup
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5532 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/bt-hci.c')
-rw-r--r-- | hw/bt-hci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bt-hci.c b/hw/bt-hci.c index 714e72671c..ab11e498d4 100644 --- a/hw/bt-hci.c +++ b/hw/bt-hci.c @@ -1814,7 +1814,7 @@ static void bt_submit_hci(struct HCIInfo *info, if (hci->device.lmp_name) free((void *) hci->device.lmp_name); - hci->device.lmp_name = strndup(PARAM(change_local_name, name), + hci->device.lmp_name = pstrdup(PARAM(change_local_name, name), sizeof(PARAM(change_local_name, name))); bt_hci_event_complete_status(hci, HCI_SUCCESS); break; |