fixes uninitialized m_output_stream variable

This commit is contained in:
Peter Thorson
2013-03-17 18:27:21 -05:00
parent 8e6bdfe42f
commit c73df1f3b5

View File

@@ -61,7 +61,8 @@ public:
typedef typename concurrency_type::mutex_type mutex_type;
explicit connection(bool is_server, alog_type& alog, elog_type& elog)
: m_reading(false)
: m_output_stream(NULL)
, m_reading(false)
, m_is_server(is_server)
, m_alog(alog)
, m_elog(elog)