mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'bug34077_043' into maint-0.4.3
This commit is contained in:
commit
711385c47f
3
changes/bug34077
Normal file
3
changes/bug34077
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (compiler warnings):
|
||||
- Fix compilation warnings with GCC 10.0.1. Fixes bug 34077; bugfix on
|
||||
0.4.0.3-alpha.
|
@ -1039,8 +1039,9 @@ sr_state_set_valid_after(time_t valid_after)
|
||||
sr_phase_t
|
||||
sr_state_get_phase(void)
|
||||
{
|
||||
void *ptr;
|
||||
void *ptr=NULL;
|
||||
state_query(SR_STATE_ACTION_GET, SR_STATE_OBJ_PHASE, NULL, &ptr);
|
||||
tor_assert(ptr);
|
||||
return *(sr_phase_t *) ptr;
|
||||
}
|
||||
|
||||
|
@ -1350,7 +1350,7 @@ client_desc_missing_bad_client_auth(const smartlist_t *entry_conns,
|
||||
/* We should not be called with another type of status. Recover by
|
||||
* sending a generic error. */
|
||||
tor_assert_nonfatal_unreached();
|
||||
code = HS_DESC_DECODE_GENERIC_ERROR;
|
||||
code = SOCKS5_GENERAL_ERROR;
|
||||
}
|
||||
entry_conn->socks_request->socks_extended_error_code = code;
|
||||
connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_MISC);
|
||||
@ -2493,4 +2493,3 @@ set_hs_client_auths_map(digest256map_t *map)
|
||||
}
|
||||
|
||||
#endif /* defined(TOR_UNIT_TESTS) */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user