8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 13:23:02 +01:00

make sure status vector is initialized

This commit is contained in:
alexpeshkoff 2008-04-07 16:30:13 +00:00
parent b3e48dd0e4
commit 2ade43d5d7

View File

@ -117,7 +117,10 @@ public:
: ThreadData(ThreadData::tddSEC), utilSvc(uf),
tsec_user_data(0), tsec_exit_code(0), tsec_throw(false),
tsec_status(tsec_status_vector), tsec_interactive(false),
tsec_sw_version(false) { }
tsec_sw_version(false)
{
memset(tsec_status_vector, 0, sizeof(tsec_status_vector));
}
Firebird::UtilSvc* utilSvc;
internal_user_data* tsec_user_data;