]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a GCC 10.0.1 compilation error.
authorNick Mathewson <nickm@torproject.org>
Fri, 1 May 2020 03:04:56 +0000 (23:04 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 1 May 2020 03:04:56 +0000 (23:04 -0400)
Do not try to stuff "HS_DESC_DECODE_GENERIC_ERROR" (-1) into a
socks5_reply_status_t (enum).  It doesn't actually make sense, and
isn't one of our documented extensions.

(This can only happen on a nonfatal assertion that we haven't seen,
so it probably isn't happening in practice.)

Fixes another case of bug 34077; bugfix on 0.4.3.1-alpha.

src/feature/hs/hs_client.c

index da1202b642f5324eb273f2a3215cd8f1f2b2f022..68d6619cea57903ec0aabfd07885babd633ad60c 100644 (file)
@@ -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) */
-