]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
cleanups on r12579
authorRoger Dingledine <arma@torproject.org>
Tue, 27 Nov 2007 21:17:43 +0000 (21:17 +0000)
committerRoger Dingledine <arma@torproject.org>
Tue, 27 Nov 2007 21:17:43 +0000 (21:17 +0000)
svn:r12580

src/common/crypto.c
src/or/rendcommon.c

index c4a06c7c11c645d75db5e669b595e7edf36296db..ad9e11a2616d178d536799e22c19f992a1325b31 100644 (file)
@@ -486,6 +486,7 @@ crypto_pk_write_public_key_to_string(crypto_pk_env_t *env, char **dest,
    */
   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;
   }
 
index cf92a2f9a90a6b7d47646148d8e941a102a3cb55..3dd1caa49a1c0466a655c0c520ee5bb835349dc7 100644 (file)
@@ -204,7 +204,7 @@ rend_encode_v2_intro_points(char **ipos_base64,
     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 @@ rend_encode_v2_intro_points(char **ipos_base64,
     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 @@ rend_encode_v2_intro_points(char **ipos_base64,
       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 @@ rend_encode_v2_intro_points(char **ipos_base64,
                          "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 @@ rend_encode_v2_descriptors(smartlist_t *desc_strs_out,
   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 @@ rend_encode_v2_descriptors(smartlist_t *desc_strs_out,
     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 @@ rend_encode_v2_descriptors(smartlist_t *desc_strs_out,
   }
 
   log_info(LD_REND, "Successfully encoded a v2 descriptor and "
-                      "confirmed that it is parsable.");
+                    "confirmed that it is parsable.");
   goto done;
 
  err: