File tree
Expand file treeCollapse file tree1 file changed
+1
-1
lines changed Expand file treeCollapse file tree1 file changed
+1
-1
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -187,7 +187,7 @@ bool WebServer::_parseRequest(NetworkClient &client) {
|
187 | 187 | _currentRaw->status = RAW_WRITE;
|
188 | 188 |
|
189 | 189 | while (_currentRaw->totalSize < _clientContentLength) {
|
190 |
| -size_t read_len = std::min(_clientContentLength - _currentRaw->totalSize, (size_t) HTTP_RAW_BUFLEN); |
| 190 | +size_t read_len = std::min(_clientContentLength - _currentRaw->totalSize, (size_t)HTTP_RAW_BUFLEN); |
191 | 191 | _currentRaw->currentSize = client.readBytes(_currentRaw->buf, read_len);
|
192 | 192 | _currentRaw->totalSize += _currentRaw->currentSize;
|
193 | 193 | if (_currentRaw->currentSize == 0) {
|
|
You can’t perform that action at this time.
0 commit comments