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
f455d17b
Commit
f455d17b
authored
Oct 28, 2020
by
Petr Vokac
Committed by
Fabrizio Furano
Nov 06, 2020
Browse files
Constructor should initialize even unused variables
parent
2d8ab36c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/utils/DomeTalker.h
View file @
f455d17b
...
...
@@ -55,7 +55,7 @@ struct DomeCredentials {
clientName
(
cn
),
remoteAddress
(
ra
),
groups
(
gr
),
oidc_authorized
(
false
)
{}
DomeCredentials
()
:
oidc_authorized
(
false
)
{}
DomeCredentials
(
const
SecurityContext
*
ctx
)
{
DomeCredentials
(
const
SecurityContext
*
ctx
)
:
oidc_authorized
(
false
)
{
if
(
ctx
)
{
clientName
=
ctx
->
credentials
.
clientName
;
...
...
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