Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lcgdm
dmlite
Commits
3e4200dd
Commit
3e4200dd
authored
Oct 28, 2020
by
Petr Vokac
Committed by
Fabrizio Furano
Nov 02, 2020
Browse files
Fix uninitialized variable
parent
217141d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/utils/DomeTalker.h
View file @
3e4200dd
...
...
@@ -54,7 +54,7 @@ struct DomeCredentials {
DomeCredentials
(
std
::
string
cn
,
std
::
string
ra
,
std
::
vector
<
std
::
string
>
gr
)
:
clientName
(
cn
),
remoteAddress
(
ra
),
groups
(
gr
),
oidc_authorized
(
false
)
{}
DomeCredentials
()
{}
DomeCredentials
()
:
oidc_authorized
(
false
)
{}
DomeCredentials
(
const
SecurityContext
*
ctx
)
{
if
(
ctx
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment