Commit 94019577 by Evgeny Vereshchagin

tests: free the buffer filled by lxc_cmd_rsp_recv

parent 03478622
...@@ -109,6 +109,7 @@ int main(int argc, char *argv[]) ...@@ -109,6 +109,7 @@ int main(int argc, char *argv[])
lxc_debug("Retrieved %" PRIu64 lxc_debug("Retrieved %" PRIu64
" bytes from console log. Contents are \"%s\"\n", " bytes from console log. Contents are \"%s\"\n",
*log.read_max, log.data); *log.read_max, log.data);
free(log.data);
} }
/* Leave another two seconds to ensure boot is finished. */ /* Leave another two seconds to ensure boot is finished. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment