diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-06-18 14:45:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-06-18 14:45:29 -0400 |
commit | 7c4544e5a4780706dee65d2a3ff8c70000b55952 (patch) | |
tree | ec175182c8c6c07408eff89d07b3a2faaa965d08 | |
parent | efa342f5fa2c6700ed8273557b7fb39bdc577120 (diff) | |
parent | 60d633c73a71d9ba514d4250fe00da5173e9968a (diff) | |
download | tor-7c4544e5a4780706dee65d2a3ff8c70000b55952.tar.gz tor-7c4544e5a4780706dee65d2a3ff8c70000b55952.zip |
Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4
-rw-r--r-- | src/or/rendcommon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index cf97a9d13f..d1b49411cd 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -1081,6 +1081,7 @@ rend_cache_store(const char *desc, size_t desc_len, int published, "attempt to improve reliability, but it could also be an " "attempt to do a guard enumeration attack. Rejecting.", safe_str_client(query)); + rend_service_descriptor_free(parsed); return -2; } tor_snprintf(key, sizeof(key), "0%s", query); @@ -1336,6 +1337,8 @@ rend_cache_store_v2_desc_as_client(const char *desc, "attempt to improve reliability, but it could also be an " "attempt to do a guard enumeration attack. Rejecting.", safe_str_client(rend_query->onion_address)); + retval = -2; + goto err; } } else { log_info(LD_REND, "Descriptor does not contain any introduction points."); |