소스 검색

Merge branch 'maint-0.3.2' into maint-0.3.3

Nick Mathewson 6 년 전
부모
커밋
58f54a3588
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/router.c

+ 1 - 1
src/or/router.c

@@ -143,7 +143,7 @@ dup_onion_keys(crypto_pk_t **key, crypto_pk_t **last)
   if (onionkey)
     *key = crypto_pk_copy_full(onionkey);
   else
-    *last = NULL;
+    *key = NULL;
   if (lastonionkey)
     *last = crypto_pk_copy_full(lastonionkey);
   else