swaynag: die on all allocation failures

This commit is contained in:
Nihal Jere 2022-02-25 11:40:04 -06:00 committed by Simon Zeni
parent 0ee54a5243
commit 061ffc30ea
3 changed files with 36 additions and 0 deletions

View file

@ -32,12 +32,20 @@ int main(int argc, char **argv) {
struct swaynag_button *button_close =
calloc(sizeof(struct swaynag_button), 1);
if (!button_close) {
perror("calloc");
return EXIT_FAILURE;
}
button_close->text = strdup("X");
button_close->type = SWAYNAG_ACTION_DISMISS;
list_add(swaynag.buttons, button_close);
swaynag.details.button_details =
calloc(sizeof(struct swaynag_button), 1);
if (!swaynag.details.button_details) {
perror("calloc");
return EXIT_FAILURE;
}
swaynag.details.button_details->text = strdup("Toggle details");
swaynag.details.button_details->type = SWAYNAG_ACTION_EXPAND;