summaryrefslogtreecommitdiff
path: root/swaybar/i3bar.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-09-12 12:28:14 -0400
committerGitHub <[email protected]>2018-09-12 12:28:14 -0400
commitdbaafdfac9057f718be406e972ba15651130e16e (patch)
tree33fcd285cc70a6cea257b1f3b6d24121d340a270 /swaybar/i3bar.c
parentaf9e8f94cc0afb9f80e3902cbb83de78027cd737 (diff)
parent2eaef802061836dd83bbf753174fcb8488b2d8cd (diff)
Merge pull request #2622 from ianyfan/i3bar-block-ref
i3bar: count references to blocks
Diffstat (limited to 'swaybar/i3bar.c')
-rw-r--r--swaybar/i3bar.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c
index ae37eeb9..1345ee9b 100644
--- a/swaybar/i3bar.c
+++ b/swaybar/i3bar.c
@@ -8,11 +8,10 @@
#include "swaybar/config.h"
#include "swaybar/status_line.h"
-void i3bar_block_free(struct i3bar_block *block) {
+static void i3bar_block_free(struct i3bar_block *block) {
if (!block) {
return;
}
- wl_list_remove(&block->link);
free(block->full_text);
free(block->short_text);
free(block->align);
@@ -22,10 +21,17 @@ void i3bar_block_free(struct i3bar_block *block) {
free(block);
}
+void i3bar_block_unref(struct i3bar_block *block) {
+ if (--block->ref_count == 0) {
+ i3bar_block_free(block);
+ }
+}
+
static bool i3bar_parse_json(struct status_line *status, const char *text) {
struct i3bar_block *block, *tmp;
wl_list_for_each_safe(block, tmp, &status->blocks, link) {
- i3bar_block_free(block);
+ wl_list_remove(&block->link);
+ i3bar_block_unref(block);
}
json_object *results = json_tokener_parse(text);
if (!results) {
@@ -61,6 +67,7 @@ static bool i3bar_parse_json(struct status_line *status, const char *text) {
json_object_object_get_ex(json, "border_right", &border_right);
struct i3bar_block *block = calloc(1, sizeof(struct i3bar_block));
+ block->ref_count = 1;
block->full_text = full_text ?
strdup(json_object_get_string(full_text)) : NULL;
block->short_text = short_text ?