Merge pull request #2631 from ianyfan/swaybar

bar: remove i3bar_block_free in favour of i3bar_block_unref
master
emersion 6 years ago committed by GitHub
commit b842b4f32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,22 +8,19 @@
#include "swaybar/config.h" #include "swaybar/config.h"
#include "swaybar/status_line.h" #include "swaybar/status_line.h"
static void i3bar_block_free(struct i3bar_block *block) { void i3bar_block_unref(struct i3bar_block *block) {
if (!block) { if (block == NULL) {
return; 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) { 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);
} }
} }

Loading…
Cancel
Save