Re: [libvirt] [PATCH] qemuDomainNamespaceSetupDisk: Fix const correctness

2018-04-10 Thread Marc Hartmayer
On Tue, Apr 10, 2018 at 08:58 AM +0200, Michal Privoznik wrote: > The array of strings we are building is indeed array of const > strings. We are not STRDUP()-ing them nor FREE()-ing them. > > Signed-off-by: Michal Privoznik > --- >

[libvirt] [PATCH] qemuDomainNamespaceSetupDisk: Fix const correctness

2018-04-10 Thread Michal Privoznik
The array of strings we are building is indeed array of const strings. We are not STRDUP()-ing them nor FREE()-ing them. Signed-off-by: Michal Privoznik --- src/qemu/qemu_domain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qemu/qemu_domain.c