dtinfo: Resolve coverity warnings related to uninitialised members of classes
This commit is contained in:
@@ -40,7 +40,7 @@ char *Exception::g_next_avail = Exception::g_temp_space;
|
||||
// /////////////////////////////////////////////////////////////////
|
||||
|
||||
Exception::Exception()
|
||||
: f_thrown(0), f_thrown_as_pointer(1), f_temporary(0), f_line(0)
|
||||
: f_thrown(0), f_thrown_as_pointer(1), f_temporary(0), f_line(0), f_file(NULL), f_previous_exception(NULL)
|
||||
{
|
||||
PRINTF (("Constructed Exception obj @ %p\n", this));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user