]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
note a compile warning that we should investigate one day.
authorRoger Dingledine <arma@torproject.org>
Mon, 14 Aug 2006 09:44:54 +0000 (09:44 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 14 Aug 2006 09:44:54 +0000 (09:44 +0000)
svn:r7052

src/common/crypto.c

index bc1ca6945ebe22329a4ac1ff5c9cc240d2f99834..6767b637dc90699791492084dba81eb03350045c 100644 (file)
@@ -504,6 +504,11 @@ crypto_pk_write_public_key_to_string(crypto_pk_env_t *env, char **dest,
 
   BIO_get_mem_ptr(b, &buf);
   BIO_set_close(b, BIO_NOCLOSE); /* so BIO_free doesn't free buf */
+  /* XXX The above line generates a warning on new gcc/openssls:
+   * crypto.c:506: warning: value computed is not used
+   * Perhaps in new openssls this is a more complex macro and
+   * we're no longer calling it quite right? -RD
+   */
   BIO_free(b);
 
   tor_assert(buf->length >= 0);