diff options
author | Julia Suvorova | 2018-03-01 08:08:06 +0100 |
---|---|---|
committer | Paolo Bonzini | 2018-03-06 14:01:29 +0100 |
commit | 3e015d815b3f28bfd874bf8a1697308ef9af2b4c (patch) | |
tree | c9007e013761351acda3bbc000e36d192a180827 /hw/vfio/pci.c | |
parent | balloon: Fix documentation of the --balloon parameter and deprecate it (diff) | |
download | qemu-3e015d815b3f28bfd874bf8a1697308ef9af2b4c.tar.gz qemu-3e015d815b3f28bfd874bf8a1697308ef9af2b4c.tar.xz qemu-3e015d815b3f28bfd874bf8a1697308ef9af2b4c.zip |
use g_path_get_basename instead of basename
basename(3) and dirname(3) modify their argument and may return
pointers to statically allocated memory which may be overwritten by
subsequent calls.
g_path_get_basename and g_path_get_dirname have no such issues, and
therefore more preferable.
Signed-off-by: Julia Suvorova <jusual@mail.ru>
Message-Id: <1519888086-4207-1-git-send-email-jusual@mail.ru>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/vfio/pci.c')
-rw-r--r-- | hw/vfio/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 033cc8dea1..3ba3cbc146 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -2807,7 +2807,7 @@ static void vfio_realize(PCIDevice *pdev, Error **errp) return; } - vdev->vbasedev.name = g_strdup(basename(vdev->vbasedev.sysfsdev)); + vdev->vbasedev.name = g_path_get_basename(vdev->vbasedev.sysfsdev); vdev->vbasedev.ops = &vfio_pci_ops; vdev->vbasedev.type = VFIO_DEVICE_TYPE_PCI; vdev->vbasedev.dev = &vdev->pdev.qdev; |