mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'bug6861_typofix'
This commit is contained in:
commit
5511d21d2b
3
changes/bug6861
Normal file
3
changes/bug6861
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes:
|
||||
- Fix handling of rendezvous client authorization types over 8.
|
||||
Fixes bug 6841; bugfix on 0.2.1.5-alpha.
|
@ -1250,7 +1250,7 @@ rend_parse_service_authorization(const or_options_t *options,
|
||||
descriptor_cookie);
|
||||
goto err;
|
||||
}
|
||||
auth_type_val = (descriptor_cookie_tmp[16] >> 4) + 1;
|
||||
auth_type_val = (((uint8_t)descriptor_cookie_tmp[16]) >> 4) + 1;
|
||||
if (auth_type_val < 1 || auth_type_val > 2) {
|
||||
log_warn(LD_CONFIG, "Authorization cookie has unknown authorization "
|
||||
"type encoded.");
|
||||
|
Loading…
Reference in New Issue
Block a user