Browse Source

test: fix memory leak in single onion poisoning

Closes #20938

Signed-off-by: David Goulet <dgoulet@torproject.org>
David Goulet 7 years ago
parent
commit
f3c040e33e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/test/test_hs.c

+ 2 - 2
src/test/test_hs.c

@@ -570,8 +570,8 @@ test_single_onion_poisoning(void *arg)
     tt_assert(ret == 0);
   }
 
-  service_1->directory = tor_strdup(dir1);
-  service_2->directory = tor_strdup(dir2);
+  service_1->directory = dir1;
+  service_2->directory = dir2;
   /* The services own the directory pointers now */
   dir1 = dir2 = NULL;
   /* Add port to service 1 */