Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2023-06-21 08:01:08 +01:00
commit 29a5dfc7c0
1 changed files with 2 additions and 0 deletions

View File

@ -787,6 +787,8 @@ popup_editor(struct client *c, const char *buf, size_t len,
if (fd == -1)
return (-1);
f = fdopen(fd, "w");
if (f == NULL)
return (-1);
if (fwrite(buf, len, 1, f) != 1) {
fclose(f);
return (-1);