Initialize all members even in private ctor.

This commit is contained in:
Teo Mrnjavac 2015-06-13 21:41:49 +02:00
parent 94a1f44fd7
commit 233d759a00

View File

@ -90,6 +90,8 @@ ProcessJobModule::initFrom( const YAML::Node& node )
ProcessJobModule::ProcessJobModule()
: Module()
, m_secondsTimeout( 30 )
, m_runInChroot( false )
{}