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

Fixed a not-initialized pointer.

This commit is contained in:
dimitr 2009-12-12 14:44:28 +00:00
parent 825454b343
commit 9a73ddbda1

View File

@ -36,7 +36,8 @@ using namespace Jrd;
// ------------------------------------
FilteredStream::FilteredStream(CompilerScratch* csb, RecordSource* next, jrd_nod* boolean)
: m_next(next), m_boolean(boolean), m_ansiAny(false), m_ansiAll(false), m_ansiNot(false)
: m_next(next), m_boolean(boolean), m_anyBoolean(NULL),
m_ansiAny(false), m_ansiAll(false), m_ansiNot(false)
{
fb_assert(m_next && m_boolean);