bar: remove i3bar_block_free in favour of i3bar_block_unref

This commit is contained in:
Ian Fan 2018-09-14 21:04:43 +01:00
parent f5ecc89c68
commit e32e86b65d
1 changed files with 9 additions and 12 deletions

View File

@ -8,22 +8,19 @@
#include "swaybar/config.h"
#include "swaybar/status_line.h"
static void i3bar_block_free(struct i3bar_block *block) {
if (!block) {
void i3bar_block_unref(struct i3bar_block *block) {
if (block == NULL) {
return;
}
free(block->full_text);
free(block->short_text);
free(block->align);
free(block->name);
free(block->instance);
free(block->color);
free(block);
}
void i3bar_block_unref(struct i3bar_block *block) {
if (--block->ref_count == 0) {
i3bar_block_free(block);
free(block->full_text);
free(block->short_text);
free(block->align);
free(block->name);
free(block->instance);
free(block->color);
free(block);
}
}