http_base: init size_t in http_request_info ctor

CID 161879
This commit is contained in:
moneromooo-monero 2017-09-09 10:59:44 +01:00
parent c339d06a5b
commit 11f71af56c
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ namespace net_utils
http_request_info():m_http_method(http_method_unknown),
m_http_ver_hi(0),
m_http_ver_lo(0),
m_have_to_block(false)
m_have_to_block(false),
m_full_request_buf_size(0)
{}
http_method m_http_method;