-
Notifications
You must be signed in to change notification settings - Fork 844
Closed
Labels
Description
access_control.cc
197 size_t equalsign = kvp.find(_tokenConfig.kvDelimiter);
cond_cannot_single: Condition 18446744073709551615UL == equalsign, taking false branch. Now the value of equalsign cannot be equal to -1.
198 if (kvp.npos == equalsign) {
199 ERROR_OUT("invalid key-value-pair, missing key-value delimiter");
200 return _state = INVALID_SYNTAX;
201 }
202 StringView key = kvp.substr(0, equalsign);
cannot_single: At condition equalsign != 18446744073709551615UL, the value of equalsign cannot be equal to -1.
dead_error_condition: The condition equalsign != 18446744073709551615UL must be true.
CID 1508856 (#1 of 1): Logically dead code (DEADCODE)
dead_error_line: Execution cannot reach this statement: <temporary>.basic_string_vi....
203 StringView value = equalsign != kvp.npos ? kvp.substr(equalsign + 1) : "";
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done