[libvirt] [PATCH] Fix memory leak in virsh

Hu Tao hutao at cn.fujitsu.com
Wed Dec 22 07:12:34 UTC 2010


---
 tools/virsh.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tools/virsh.c b/tools/virsh.c
index 4e37f2d..8c123bb 100644
--- a/tools/virsh.c
+++ b/tools/virsh.c
@@ -10935,8 +10935,10 @@ vshCommandParse(vshControl *ctl, vshCommandParser *parser)
 
             if (tk == VSH_TK_ERROR)
                 goto syntaxError;
-            if (tk != VSH_TK_ARG)
+            if (tk != VSH_TK_ARG) {
+                VIR_FREE(tkdata);
                 break;
+            }
 
             if (cmd == NULL) {
                 /* first token must be command name */
-- 
1.7.3.1


-- 
Thanks,
Hu Tao




More information about the libvir-list mailing list