提交 d4c8a5d4 编写于 作者: M Marc-André Lureau 提交者: Michael Roth

qga: free a bit more

Now that main() has a single exit point, we can free a few
more allocations.
Signed-off-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: NDenis V. Lunev <den@openvz.org>
Signed-off-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
上级 e3d31039
......@@ -82,7 +82,7 @@ struct GAState {
bool delimit_response;
bool frozen;
GList *blacklist;
const char *state_filepath_isfrozen;
char *state_filepath_isfrozen;
struct {
const char *log_filepath;
const char *pid_filepath;
......@@ -90,7 +90,7 @@ struct GAState {
#ifdef CONFIG_FSFREEZE
const char *fsfreeze_hook;
#endif
const gchar *pstate_filepath;
gchar *pstate_filepath;
GAPersistentState pstate;
};
......@@ -1254,6 +1254,8 @@ end:
ga_channel_free(s->channel);
}
g_list_foreach(config->blacklist, free_blacklist_entry, NULL);
g_free(s->pstate_filepath);
g_free(s->state_filepath_isfrozen);
if (config->daemonize) {
unlink(config->pid_filepath);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册