mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
notify: add_icon(): check return value of write()
This commit is contained in:
parent
9814cf5779
commit
d0a5425155
1 changed files with 7 additions and 4 deletions
11
notify.c
11
notify.c
|
|
@ -303,11 +303,14 @@ add_icon(struct notification_icon *icon, const char *id, const char *symbolic_na
|
|||
return;
|
||||
}
|
||||
|
||||
write(fd, data, data_sz);
|
||||
close(fd);
|
||||
if (write(fd, data, data_sz) != (ssize_t)data_sz) {
|
||||
LOG_ERRNO("failed to write icon data to temporary file");
|
||||
} else {
|
||||
LOG_DBG("wrote icon data to %s", name);
|
||||
icon->tmp_file_on_disk = xstrdup(name);
|
||||
}
|
||||
|
||||
LOG_DBG("wrote icon data to %s", name);
|
||||
icon->tmp_file_on_disk = xstrdup(name);
|
||||
close(fd);
|
||||
}
|
||||
|
||||
LOG_DBG("added icon to cache: ID=%s: sym=%s, file=%s",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue