Skip to content

Commit

Permalink
Fix uninit member on AuxClientThread ctor (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinEady committed Mar 25, 2023
1 parent ccc6213 commit 6f84b07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pol-core/pol/network/auxclient.cpp
Expand Up @@ -103,7 +103,8 @@ AuxClientThread::AuxClientThread( AuxService* auxsvc, Clib::Socket&& sock )
_params( nullptr ),
_assume_string( false ),
_transmit_counter( 0 ),
_keep_alive( false )
_keep_alive( false ),
_ignore_line_breaks( false )
{
}
AuxClientThread::AuxClientThread( Core::ScriptDef scriptdef, Clib::Socket&& sock,
Expand Down

0 comments on commit 6f84b07

Please sign in to comment.