mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 14:03:02 +01:00
Fixed a not-initialized pointer.
This commit is contained in:
parent
825454b343
commit
9a73ddbda1
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user