mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Fix/annotate deadcode for CID 402,403
This commit is contained in:
parent
134ac8059b
commit
385853a282
@ -830,36 +830,36 @@ handle_control_loadconf(control_connection_t *conn, uint32_t len,
|
||||
|
||||
retval = options_init_from_string(body, CMD_RUN_TOR, NULL, &errstring);
|
||||
|
||||
if (retval != SETOPT_OK) {
|
||||
if (retval != SETOPT_OK)
|
||||
log_warn(LD_CONTROL,
|
||||
"Controller gave us config file that didn't validate: %s",
|
||||
errstring);
|
||||
switch (retval) {
|
||||
case SETOPT_ERR_PARSE:
|
||||
msg = "552 Invalid config file";
|
||||
break;
|
||||
case SETOPT_ERR_TRANSITION:
|
||||
msg = "553 Transition not allowed";
|
||||
break;
|
||||
case SETOPT_ERR_SETTING:
|
||||
msg = "553 Unable to set option";
|
||||
break;
|
||||
case SETOPT_ERR_MISC:
|
||||
default:
|
||||
msg = "550 Unable to load config";
|
||||
break;
|
||||
case SETOPT_OK:
|
||||
tor_fragile_assert();
|
||||
break;
|
||||
}
|
||||
|
||||
switch (retval) {
|
||||
case SETOPT_ERR_PARSE:
|
||||
msg = "552 Invalid config file";
|
||||
break;
|
||||
case SETOPT_ERR_TRANSITION:
|
||||
msg = "553 Transition not allowed";
|
||||
break;
|
||||
case SETOPT_ERR_SETTING:
|
||||
msg = "553 Unable to set option";
|
||||
break;
|
||||
case SETOPT_ERR_MISC:
|
||||
default:
|
||||
msg = "550 Unable to load config";
|
||||
break;
|
||||
case SETOPT_OK:
|
||||
break;
|
||||
}
|
||||
if (msg) {
|
||||
if (*errstring)
|
||||
connection_printf_to_buf(conn, "%s: %s\r\n", msg, errstring);
|
||||
else
|
||||
connection_printf_to_buf(conn, "%s\r\n", msg);
|
||||
tor_free(errstring);
|
||||
return 0;
|
||||
} else {
|
||||
send_control_done(conn);
|
||||
}
|
||||
send_control_done(conn);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -182,6 +182,9 @@ accounting_parse_options(or_options_t *options, int validate_only)
|
||||
case UNIT_DAY:
|
||||
d = 0;
|
||||
break;
|
||||
/* Coverity dislikes unreachable default cases; some compilers warn on
|
||||
* switch statements missing a case. Tell Coverity not to worry. */
|
||||
/* coverity[dead_error_begin] */
|
||||
default:
|
||||
tor_assert(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user