diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-20 06:12:08 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-20 06:12:08 -0500 |
commit | 63f7fb95172a72436698a1562b4f7ea1e9100a7e (patch) | |
tree | 7b1191368f446c7ee24ce41eb36d0cd3a86a6c35 /sway/config | |
parent | a4c1270ef0a3c5bd610b13867be7616a55e59dc5 (diff) |
cleanup
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/seat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/config/seat.c b/sway/config/seat.c index 4c9e8d0d..113139e8 100644 --- a/sway/config/seat.c +++ b/sway/config/seat.c @@ -14,6 +14,7 @@ struct seat_config *new_seat_config(const char* name) { sway_log(L_DEBUG, "new_seat_config(%s)", name); seat->name = strdup(name); if (!sway_assert(seat->name, "could not allocate name for seat")) { + free(seat); return NULL; } @@ -21,6 +22,8 @@ struct seat_config *new_seat_config(const char* name) { seat->attachments = create_list(); if (!sway_assert(seat->attachments, "could not allocate seat attachments list")) { + free(seat->name); + free(seat); return NULL; } |