diff options
author | Thomas White <taw@physics.org> | 2013-02-15 10:47:07 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-15 10:49:58 +0100 |
commit | 0cda27a3fdfbfb45f3433d9dce541adb79a8762a (patch) | |
tree | b58574443673891661ccdcdf2550afe9f8655df6 /src/im-sandbox.c | |
parent | 6ccc117d5fbcba725ddc1ff67620452b41bd442c (diff) |
Fussiness
Diffstat (limited to 'src/im-sandbox.c')
-rw-r--r-- | src/im-sandbox.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/im-sandbox.c b/src/im-sandbox.c index 62f7e667..8da42d32 100644 --- a/src/im-sandbox.c +++ b/src/im-sandbox.c @@ -557,7 +557,9 @@ static void *run_reader(void *sbv) if ( !sb->running[i] ) continue; - if ( !FD_ISSET(sb->stream_pipe_read[i], &fds) ) continue; + if ( !FD_ISSET(sb->stream_pipe_read[i], &fds) ) { + continue; + } if ( pump_chunk(sb->fhs[i], sb->ofh) ) { sb->running[i] = 0; |