summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/execute.c3
-rw-r--r--src/util.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/execute.c b/src/execute.c
index 8f486e2004..1e8dfaf770 100644
--- a/src/execute.c
+++ b/src/execute.c
@@ -1406,6 +1406,9 @@ void exec_context_done(ExecContext *c) {
if (c->cpuset)
CPU_FREE(c->cpuset);
+
+ free(c->utmp_id);
+ c->utmp_id = NULL;
}
void exec_command_done(ExecCommand *c) {
diff --git a/src/util.c b/src/util.c
index aa1f19ed69..67a75c5702 100644
--- a/src/util.c
+++ b/src/util.c
@@ -3090,6 +3090,9 @@ void status_welcome(void) {
status_printf("Welcome to \x1B[%sm%s\x1B[0m!\n",
const_color ? const_color : ansi_color,
const_pretty ? const_pretty : pretty_name);
+
+ free(ansi_color);
+ free(pretty_name);
}
char *replace_env(const char *format, char **env) {