Merge pull request #1827 from bpinto/swaybar-memory-leak

Fix memory leak on swaybar
This commit is contained in:
emersion 2018-04-20 09:07:59 +01:00 committed by GitHub
commit 7434c52421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -104,6 +104,7 @@ static bool i3bar_parse_json(struct status_line *status, const char *text) {
json_object_get_int(border_right) : 1;
wl_list_insert(&status->blocks, &block->link);
}
json_object_put(results);
return true;
}