diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-10-18 19:56:17 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-10-18 19:56:17 +0200 |
commit | 4ea9c3f77b298b4da5e95062023cafbc7c19a021 (patch) | |
tree | 16bab3e7554720a6fa6658c0b6f961d21ead3649 | |
parent | d39745491dc911c7b7118402d640d54d50e845ab (diff) | |
download | pianobar-4ea9c3f77b298b4da5e95062023cafbc7c19a021.tar.gz pianobar-4ea9c3f77b298b4da5e95062023cafbc7c19a021.tar.bz2 pianobar-4ea9c3f77b298b4da5e95062023cafbc7c19a021.zip |
Initialize main fd array
Cherry-picked from Josh Elsasser's unixsocket patch.
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,7 +60,7 @@ int main (int argc, char **argv) { char ctlPath[1024]; FILE *ctlFd = NULL; struct timeval selectTimeout; - int maxFd, selectFds[2]; + int maxFd, selectFds[2] = {-1, -1}; fd_set readSet, readSetCopy; char buf = '\0'; /* terminal attributes _before_ we started messing around with ~ECHO */ @@ -313,7 +313,7 @@ int main (int argc, char **argv) { if (FD_ISSET(selectFds[0], &readSetCopy)) { curFd = stdin; - } else if (FD_ISSET(selectFds[1], &readSetCopy)) { + } else if (selectFds[1] != -1 && FD_ISSET(selectFds[1], &readSetCopy)) { curFd = ctlFd; } buf = fgetc (curFd); |