Skip to content

Commit

Permalink
Fixed bug CORE-6204 : FB crash because TraceSvcJrd::checkPrivileges c…
Browse files Browse the repository at this point in the history
…an pass NULL in 'alias'
  • Loading branch information
hvlad committed Dec 11, 2019
1 parent cc614c3 commit 97131a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jrd/trace/TraceService.cpp
Expand Up @@ -363,8 +363,8 @@ bool TraceSvcJrd::checkPrivileges(TraceSession& session)

try
{
mapUser(s_user, t_role, NULL, NULL, m_authBlock,
NULL, NULL, secDb, m_svc.getCryptCallback(), NULL);
mapUser(s_user, t_role, NULL, NULL, m_authBlock, "services manager",
NULL, secDb, m_svc.getCryptCallback(), NULL);
}
catch (const Firebird::Exception&)
{
Expand Down

0 comments on commit 97131a5

Please sign in to comment.