Skip to content

Commit

Permalink
Postfix for CORE-4821: fixed segfault in REVOKE ALL ON ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPeshkoff committed Jun 4, 2015
1 parent 5dff2e4 commit 4e9539b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsql/DdlNodes.epp
Expand Up @@ -10661,7 +10661,7 @@ void GrantRevokeNode::grantRevoke(thread_db* tdbb, jrd_tra* transaction, const G
SSHORT userType = userNod->first;
MetaName user(userNod->second);
MetaName dummyName;
const SSHORT objType = object->first;
const SSHORT objType = object ? object->first : obj_type_MAX;
bool crdb = false;

char privileges[16];
Expand Down

0 comments on commit 4e9539b

Please sign in to comment.