]> xenbits.xensource.com Git - libvirt.git/commitdiff
console: plug memory leaks
authorAlex Jia <ajia@redhat.com>
Tue, 20 Dec 2011 09:40:13 +0000 (17:40 +0800)
committerEric Blake <eblake@redhat.com>
Tue, 20 Dec 2011 20:36:45 +0000 (13:36 -0700)
Using 'virReallocN' to allocate memory on virConsoleEventOnStdin,
virConsoleEventOnStdout and virConsoleEventOnStream, however, the
cleanup function virConsoleShutdown hasn't released these memory.

* tools/console.c: fix memory leaks on virConsoleShutdown.

https://bugzilla.redhat.com/show_bug.cgi?id=767488

Signed-off-by: Alex Jia <ajia@redhat.com>
tools/console.c

index e6118a07be22ed16fbe4e12916acd7145b482255..4a32522e74c2f41e6525453e51f6767a9abf9cbb 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * console.c: A dumb serial console client
  *
- * Copyright (C) 2007, 2008, 2010 Red Hat, Inc.
+ * Copyright (C) 2007-2008, 2010-2011 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -101,6 +101,8 @@ virConsoleShutdown(virConsolePtr con)
         virStreamAbort(con->st);
         virStreamFree(con->st);
     }
+    VIR_FREE(con->streamToTerminal.data);
+    VIR_FREE(con->terminalToStream.data);
     if (con->stdinWatch != -1)
         virEventRemoveHandle(con->stdinWatch);
     if (con->stdoutWatch != -1)