diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-10-08 15:18:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 15:18:49 -0400 |
commit | 3f328b62768d7801f0544b31ab8f9dde3014fd1d (patch) | |
tree | 3572a9e1bff58710c22638d85ce1206af3999d94 /sway/swaynag.c | |
parent | d21d2c8665f8fdaad719bb81cc636052f7c1d1a1 (diff) | |
parent | a03955f9368cfa1c190e4194eed8437dce22eb77 (diff) | |
download | sway-3f328b62768d7801f0544b31ab8f9dde3014fd1d.tar.xz |
Merge branch 'master' into popup-during-fullscreen
Diffstat (limited to 'sway/swaynag.c')
-rw-r--r-- | sway/swaynag.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/swaynag.c b/sway/swaynag.c index d905db2b..38e74b88 100644 --- a/sway/swaynag.c +++ b/sway/swaynag.c @@ -11,6 +11,10 @@ bool swaynag_spawn(const char *swaynag_command, struct swaynag_instance *swaynag) { + if (!swaynag_command) { + return true; + } + if (swaynag->detailed) { if (pipe(swaynag->fd) != 0) { wlr_log(WLR_ERROR, "Failed to create pipe for swaynag"); @@ -58,6 +62,10 @@ void swaynag_kill(struct swaynag_instance *swaynag) { void swaynag_log(const char *swaynag_command, struct swaynag_instance *swaynag, const char *fmt, ...) { + if (!swaynag_command) { + return; + } + if (!swaynag->detailed) { wlr_log(WLR_ERROR, "Attempting to write to non-detailed swaynag inst"); return; |