[libvirt] [PATCH] Fix memory leak in virStorageBackendCopyToFD

Matthias Bolte matthias.bolte at googlemail.com
Fri Dec 11 01:12:46 UTC 2009


---
 src/storage/storage_backend.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend.c
index a3b4d5a..9dc801c 100644
--- a/src/storage/storage_backend.c
+++ b/src/storage/storage_backend.c
@@ -198,6 +198,8 @@ cleanup:
     if (inputfd != -1)
         close(inputfd);
 
+    VIR_FREE(buf);
+
     return ret;
 }
 
-- 
1.6.0.4




More information about the libvir-list mailing list