diff options
author | nicm <nicm> | 2021-02-12 06:52:48 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-02-12 06:52:48 +0000 |
commit | 632636dba535468d8266ad44c099f1217f1e3ea5 (patch) | |
tree | 58424b7a091c5a1388a65345479dcd1c0a3c20f7 /file.c | |
parent | 2b58c226db055eff4bbb971fa00938b42690f4ac (diff) | |
download | rtmux-632636dba535468d8266ad44c099f1217f1e3ea5.tar.gz rtmux-632636dba535468d8266ad44c099f1217f1e3ea5.tar.bz2 rtmux-632636dba535468d8266ad44c099f1217f1e3ea5.zip |
Do not care about the server socket closing if exiting anyway.
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -485,7 +485,7 @@ file_write_left(struct client_files *files) size_t left; int waiting = 0; - RB_FOREACH (cf, client_files, files) { + RB_FOREACH(cf, client_files, files) { if (cf->event == NULL) continue; left = EVBUFFER_LENGTH(cf->event->output); |