From: Alex Jia <[email protected]> Detected by Coverity. Leak introduced in commit baf2ff7.
* daemon/remote.c: Clean up on failure. Signed-off-by: Alex Jia <[email protected]> --- daemon/remote.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/daemon/remote.c b/daemon/remote.c index f5141b9..173cd92 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -498,6 +498,8 @@ static int remoteRelayDomainEventDiskChange(virConnectPtr conn ATTRIBUTE_UNUSED, mem_error: virReportOOMError(); + VIR_FREE(oldSrcPath_p); + VIR_FREE(newSrcPath_p); return -1; } -- 1.7.1 -- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
