irrelevant

This commit is contained in:
Adam D. Ruppe 2025-02-08 15:47:01 -05:00
parent 1c13f6fa53
commit 16f17911f6
1 changed files with 4 additions and 2 deletions

6
cgi.d
View File

@ -6929,12 +6929,14 @@ version(cgi_with_websocket) {
return true; return true;
} }
if(bfr.sourceClosed) if(bfr.sourceClosed) {
return false; return false;
}
bfr.popFront(0); bfr.popFront(0);
if(bfr.sourceClosed) if(bfr.sourceClosed) {
return false; return false;
}
goto top; goto top;
} }