diff options
-rw-r--r-- | src/plugins/http_static/static_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/http_static/static_server.c b/src/plugins/http_static/static_server.c index bc18875626e..d987a3eb7fb 100644 --- a/src/plugins/http_static/static_server.c +++ b/src/plugins/http_static/static_server.c @@ -151,7 +151,7 @@ start_send_data (hss_session_t *hs, http_status_code_t status) if (rv != hs->data_len) { - hs->data_offset = rv; + hs->data_offset = (rv > 0) ? rv : 0; svm_fifo_add_want_deq_ntf (ts->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF); } |