virFileNBDDeviceAssociate: Avoid use of uninitialized variable

The @qemunbd variable can be used uninitialized.

(cherry picked from commit 2dba0323ff)
This commit is contained in:
Michal Privoznik 2013-09-03 18:56:06 +02:00 committed by Eric Blake
parent 4f4e1cbf1f
commit 28ca8b386c

View File

@ -728,7 +728,7 @@ int virFileNBDDeviceAssociate(const char *file,
char **dev) char **dev)
{ {
char *nbddev; char *nbddev;
char *qemunbd; char *qemunbd = NULL;
virCommandPtr cmd = NULL; virCommandPtr cmd = NULL;
int ret = -1; int ret = -1;
const char *fmtstr = NULL; const char *fmtstr = NULL;