9b367aafd3
db7a5688-CVE-2013-4311.patch, e65667c0-CVE-2013-4311.patch, 922b7fda-CVE-2013-4311.patch, e4697b92-CVE-2013-4311.patch bnc#836931 - CVE-2013-4296: Fix crash in remoteDispatchDomainMemoryStats e7f400a1-CVE-2013-4296.patch bnc#838638 - CVE-2013-4297: Fix crash in virFileNBDDeviceAssociate 2dba0323-CVE-2013-4297.patch bnc#838642 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=299
22 lines
702 B
Diff
22 lines
702 B
Diff
commit 2dba0323ff0cec31bdcea9dd3b2428af297401f2
|
|
Author: Michal Privoznik <mprivozn@redhat.com>
|
|
Date: Tue Sep 3 18:56:06 2013 +0200
|
|
|
|
virFileNBDDeviceAssociate: Avoid use of uninitialized variable
|
|
|
|
The @qemunbd variable can be used uninitialized.
|
|
|
|
Index: libvirt-1.1.2/src/util/virfile.c
|
|
===================================================================
|
|
--- libvirt-1.1.2.orig/src/util/virfile.c
|
|
+++ libvirt-1.1.2/src/util/virfile.c
|
|
@@ -732,7 +732,7 @@ int virFileNBDDeviceAssociate(const char
|
|
char **dev)
|
|
{
|
|
char *nbddev;
|
|
- char *qemunbd;
|
|
+ char *qemunbd = NULL;
|
|
virCommandPtr cmd = NULL;
|
|
int ret = -1;
|
|
const char *fmtstr = NULL;
|