diff options
| author | Pali Rohár <[email protected]> | 2021-10-25 15:12:52 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2021-11-03 06:45:26 +0100 |
| commit | 0a14341cf8f60e6a9ba2edb0802507cbb073e806 (patch) | |
| tree | 2929969b648488ba5c1d3476e21bd33cf1b5e2ea /tools | |
| parent | 03a8a5e26a32d842ce2c92be9dc9b9d1b10c9057 (diff) | |
tools: kwboot: Initialize rfds to zero
Explicitly zero out the rfds fd_set with FD_ZERO() before using it.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Marek Behún <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/kwboot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/kwboot.c b/tools/kwboot.c index 7e1be296230..695d433b96e 100644 --- a/tools/kwboot.c +++ b/tools/kwboot.c @@ -1151,6 +1151,7 @@ kwboot_terminal(int tty) fd_set rfds; int nfds = 0; + FD_ZERO(&rfds); FD_SET(tty, &rfds); nfds = nfds < tty ? tty : nfds; |
