string-helpers.c: add string_empty()

This commit is contained in:
Johan Malm 2024-01-19 19:06:07 +00:00 committed by Johan Malm
parent 8c9be2f0d1
commit c066821046
9 changed files with 27 additions and 14 deletions

View file

@ -17,6 +17,7 @@
#include "button/common.h"
#include "common/grab-file.h"
#include "common/mem.h"
#include "common/string-helpers.h"
#include "buffer.h"
enum token_type {
@ -279,7 +280,7 @@ button_xbm_load(const char *button_name, struct lab_data_buffer **buffer,
wlr_buffer_drop(&(*buffer)->base);
*buffer = NULL;
}
if (!button_name || !*button_name) {
if (string_null_or_empty(button_name)) {
return;
}
color = argb32(rgba);