diff options
| author | llyyr <llyyr.public@gmail.com> | 2025-01-16 19:11:36 +0530 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2025-01-26 14:41:48 +0100 |
| commit | a725f08ed005ce7bbb16740ba2fcef2c0251f391 (patch) | |
| tree | 63e9340e3b5e157733c0e170d82a375623dca517 | |
| parent | 20b5362256372f291a437a7305b090000ebec0d0 (diff) | |
config/output: don't leak background_fallback
(cherry picked from commit 30c858423dcdfb82d768a5025b5f00c19b250322)
| -rw-r--r-- | sway/config/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index 27708476..9fb3a12a 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -1018,6 +1018,7 @@ void free_output_config(struct output_config *oc) { free(oc->name); free(oc->background); free(oc->background_option); + free(oc->background_fallback); wlr_color_transform_unref(oc->color_transform); free(oc); } |
