summaryrefslogtreecommitdiff
path: root/src/wallpaper.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-02-28 09:59:30 +0100
committerGitHub <noreply@github.com>2021-02-28 09:59:30 +0100
commit32924c21ca08e7203ffb376896a4012bd46f1f93 (patch)
tree2a7079ad7c7bea1c30494ff29eb28ffff94fa14a /src/wallpaper.c
parent61d17588149df64e54734330103ebe0622a8caa0 (diff)
parenta23571495beb95e146755e16b1a02dff03624625 (diff)
Merge pull request #531 from Ferada/fix-some-warnings
Fix some warnings from `gcc`.
Diffstat (limited to 'src/wallpaper.c')
-rw-r--r--src/wallpaper.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallpaper.c b/src/wallpaper.c
index b62d28b..5adb3ca 100644
--- a/src/wallpaper.c
+++ b/src/wallpaper.c
@@ -382,7 +382,10 @@ void feh_wm_set_bg(char *fil, Imlib_Image im, int centered, int scaled,
feh_wm_load_next(&im);
fil = FEH_FILE(filelist->data)->filename;
}
- snprintf(sendbuf, sizeof(sendbuf), "background %s bg.file %s", bgname, fil);
+ if ((size_t) snprintf(sendbuf, sizeof(sendbuf), "background %s bg.file %s", bgname, fil) >= sizeof(sendbuf)) {
+ weprintf("Writing to IPC send buffer was truncated");
+ return;
+ }
enl_ipc_send(sendbuf);
if (scaled) {