mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 20:43:02 +01:00
This should fix crashes surfaced by my yesterday's commit
This commit is contained in:
parent
2e8bfcb1b0
commit
d2adb6e3d2
@ -260,7 +260,7 @@ bool ExprNode::dsqlMatch(DsqlCompilerScratch* dsqlScratch, const ExprNode* other
|
||||
|
||||
bool ExprNode::sameAs(const ExprNode* other, bool ignoreStreams) const
|
||||
{
|
||||
if (other->getType() != getType())
|
||||
if (!other || other->getType() != getType())
|
||||
return false;
|
||||
|
||||
NodeRefsHolder thisHolder;
|
||||
|
Loading…
Reference in New Issue
Block a user