In qemuParseNBDString, if the virURIParse fails, the
error is not reported to the caller. Instead execution
falls through to the non-URI codepath causing memory
leaks later on.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
virURIPtr uri = NULL;
if (strstr(disk->src, "://")) {
- uri = virURIParse(disk->src);
- if (uri)
- return qemuParseDriveURIString(disk, uri, "nbd");
+ if (!(uri = virURIParse(disk->src)))
+ return -1;
+ return qemuParseDriveURIString(disk, uri, "nbd");
}
if (VIR_ALLOC(h) < 0)