diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-09-09 10:59:44 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-09-25 15:47:59 +0100 |
commit | 11f71af56c11cf3b2ade879e633bf264ada07a7e (patch) | |
tree | 31a7d29a7d5cd27ede71f1bed5528af078d4cfee /contrib | |
parent | Merge pull request #2418 (diff) | |
download | monero-11f71af56c11cf3b2ade879e633bf264ada07a7e.tar.xz |
http_base: init size_t in http_request_info ctor
CID 161879
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/epee/include/net/http_base.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/epee/include/net/http_base.h b/contrib/epee/include/net/http_base.h index e5aa06cb4..144acad9d 100644 --- a/contrib/epee/include/net/http_base.h +++ b/contrib/epee/include/net/http_base.h @@ -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; |