diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-05-28 12:51:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-05-28 12:51:20 -0400 |
commit | 5f15b0e1e25dac6143a0a3f4398d03524ec15c46 (patch) | |
tree | 0f25946940c6bec71c11e3dd7e49d5a576b035c6 /src/or/connection_or.c | |
parent | b76815d1107dafd9e1221a04a40033eaae242eb9 (diff) | |
download | tor-5f15b0e1e25dac6143a0a3f4398d03524ec15c46.tar.gz tor-5f15b0e1e25dac6143a0a3f4398d03524ec15c46.zip |
Memory leak on error in connection_or_compute_auth_cell_body. CID 1301372
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 48128d6335..a967c93aca 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -2356,7 +2356,7 @@ connection_or_compute_authenticate_cell_body(or_connection_t *conn, const digests_t *my_digests, *their_digests; const uint8_t *my_id, *their_id, *client_id, *server_id; if (tor_tls_get_my_certs(server, &link_cert, &id_cert)) - return -1; + goto err; my_digests = tor_x509_cert_get_id_digests(id_cert); their_digests = tor_x509_cert_get_id_digests(conn->handshake_state->id_cert); @@ -2455,7 +2455,7 @@ connection_or_compute_authenticate_cell_body(or_connection_t *conn, d, 32); if (siglen < 0) { log_warn(LD_OR, "Unable to sign AUTH1 data."); - return -1; + goto err; } auth1_setlen_sig(auth, siglen); |