You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
738 B
33 lines
738 B
From 8a6f2d39bf883a05145651e04ae1bdb2fbba8c34 Mon Sep 17 00:00:00 2001
|
|
From: Josh Boyer <jwboyer@redhat.com>
|
|
Date: Fri, 7 Apr 2023 12:50:51 -0400
|
|
Subject: [PATCH 06/12] Fix spm memory leak
|
|
|
|
---
|
|
status.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/status.c b/status.c
|
|
index f4418500..116b28c0 100644
|
|
--- a/status.c
|
|
+++ b/status.c
|
|
@@ -1628,6 +1628,7 @@ status_prompt_complete_window_menu(struct client *c, struct session *s,
|
|
}
|
|
if (size == 0) {
|
|
menu_free(menu);
|
|
+ free(spm);
|
|
return (NULL);
|
|
}
|
|
if (size == 1) {
|
|
@@ -1638,6 +1639,7 @@ status_prompt_complete_window_menu(struct client *c, struct session *s,
|
|
} else
|
|
tmp = list[0];
|
|
free(list);
|
|
+ free(spm);
|
|
return (tmp);
|
|
}
|
|
if (height > size)
|
|
--
|
|
2.31.1
|
|
|