diff options
author | adnano <me@adnano.co> | 2023-12-28 11:42:50 -0500 |
---|---|---|
committer | adnano <me@adnano.co> | 2023-12-28 11:42:50 -0500 |
commit | 69a7078e019261b26c31b61724a0f3bc517ab624 (patch) | |
tree | 332fd313d0f956f621d77289a23de7e490f4895c | |
parent | 3ec74a0f2f7aebbedffaa74b6caa3d8299f65f08 (diff) | |
download | wmenu-69a7078e019261b26c31b61724a0f3bc517ab624.tar.gz |
Check the return value of pipe
On some systems, pipe is declared with the attribute warn_unused_result,
so we have to check the return value.
-rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -573,7 +573,10 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state, } int fds[2]; - pipe(fds); + if (pipe(fds) == -1) { + // Pipe failed + return; + } wl_data_offer_receive(state->offer, "text/plain", fds[1]); close(fds[1]); |