Browse Source

Always initialize hexid in rend_mid_rendezvous, no matter what

svn:r2176
Nick Mathewson 21 years ago
parent
commit
f5f4314e2d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/rendmid.c

+ 2 - 1
src/or/rendmid.c

@@ -229,8 +229,9 @@ rend_mid_rendezvous(circuit_t *circ, const char *request, int request_len)
   circuit_t *rend_circ;
   char hexid[9];
 
+  base16_encode(hexid,9,request,request_len<4?request_len:4);
+
   if (request_len>=4) {
-    base16_encode(hexid,9,request,4);
     log_fn(LOG_INFO, "Got request for rendezvous from circuit %d to cookie %s",
            circ->p_circ_id, hexid);
   }