aboutsummaryrefslogtreecommitdiff
path: root/swaynag
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-11-14 21:25:26 -0500
committerGitHub <noreply@github.com>2018-11-14 21:25:26 -0500
commit484bf591be330905a4d4720efa7eb8cd16e53576 (patch)
tree27a33ba71b34918c98b4c3c120a999bd9b8488aa /swaynag
parent47cca240e26992782622a3dc360ed3afec83b47f (diff)
parenteda1bf769f239a9e8d5a9907255a330e3113a649 (diff)
Merge pull request #3121 from c-edw/feature/MissingFrees
[WIP] Free unfreed resources.
Diffstat (limited to 'swaynag')
-rw-r--r--swaynag/swaynag.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/swaynag/swaynag.c b/swaynag/swaynag.c
index fa6bbe05..06185f20 100644
--- a/swaynag/swaynag.c
+++ b/swaynag/swaynag.c
@@ -412,6 +412,7 @@ void swaynag_destroy(struct swaynag *swaynag) {
free(button);
}
list_free(swaynag->buttons);
+ free(swaynag->details.button_details);
free(swaynag->details.message);
free(swaynag->details.button_up.text);
free(swaynag->details.button_down.text);