[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r12580: cleanups on r12579 (in tor/trunk/src: common or)
Author: arma
Date: 2007-11-27 16:17:43 -0500 (Tue, 27 Nov 2007)
New Revision: 12580
Modified:
tor/trunk/src/common/crypto.c
tor/trunk/src/or/rendcommon.c
Log:
cleanups on r12579
Modified: tor/trunk/src/common/crypto.c
===================================================================
--- tor/trunk/src/common/crypto.c 2007-11-27 21:06:34 UTC (rev 12579)
+++ tor/trunk/src/common/crypto.c 2007-11-27 21:17:43 UTC (rev 12580)
@@ -486,6 +486,7 @@
*/
if (!PEM_write_bio_RSAPublicKey(b, env->key)) {
crypto_log_errors(LOG_WARN, "writing public key to string");
+ /* XXX020 leaks b? maybe "BIO_free(b);" would be smart here. -RD */
return -1;
}
Modified: tor/trunk/src/or/rendcommon.c
===================================================================
--- tor/trunk/src/or/rendcommon.c 2007-11-27 21:06:34 UTC (rev 12579)
+++ tor/trunk/src/or/rendcommon.c 2007-11-27 21:17:43 UTC (rev 12580)
@@ -204,7 +204,7 @@
size_t onion_key_len;
crypto_pk_env_t *intro_key;
char *service_key = NULL;
- char *addr = NULL;
+ char *address = NULL;
size_t service_key_len;
int res;
char hex_digest[HEX_DIGEST_LEN+2]; /* includes $ and NUL. */
@@ -217,7 +217,6 @@
if (crypto_pk_write_public_key_to_string(info->onion_key, &onion_key,
&onion_key_len) < 0) {
log_warn(LD_REND, "Could not write onion key.");
- tor_free(onion_key);
goto done;
}
/* Encode intro key. */
@@ -230,12 +229,11 @@
crypto_pk_write_public_key_to_string(intro_key, &service_key,
&service_key_len) < 0) {
log_warn(LD_REND, "Could not write intro key.");
- tor_free(service_key);
tor_free(onion_key);
goto done;
}
/* Assemble everything for this introduction point. */
- addr = tor_dup_addr(info->addr);
+ address = tor_dup_addr(info->addr);
res = tor_snprintf(unenc + unenc_written, unenc_len - unenc_written,
"introduction-point %s\n"
"ip-address %s\n"
@@ -243,11 +241,11 @@
"onion-key\n%s"
"service-key\n%s",
id_base32,
- addr,
+ address,
info->port,
onion_key,
service_key);
- tor_free(addr);
+ tor_free(address);
tor_free(onion_key);
tor_free(service_key);
if (res < 0) {
@@ -357,7 +355,6 @@
if (desc->n_intro_points > 0 &&
rend_encode_v2_intro_points(&ipos_base64, desc, descriptor_cookie) < 0) {
log_warn(LD_REND, "Encoding of introduction points did not succeed.");
- tor_free(ipos_base64);
return -1;
}
/* Encode REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS descriptors. */
@@ -392,7 +389,6 @@
if (crypto_pk_write_public_key_to_string(desc->pk, &permanent_key,
&permanent_key_len) < 0) {
log_warn(LD_BUG, "Could not write public key to string.");
- tor_free(permanent_key);
goto err;
}
/* Encode timestamp. */
@@ -479,7 +475,7 @@
}
log_info(LD_REND, "Successfully encoded a v2 descriptor and "
- "confirmed that it is parsable.");
+ "confirmed that it is parsable.");
goto done;
err: