summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test/test_hs_control.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test_hs_control.c b/src/test/test_hs_control.c
index 99c865c8ee..dfc1e5445e 100644
--- a/src/test/test_hs_control.c
+++ b/src/test/test_hs_control.c
@@ -800,6 +800,8 @@ test_hs_control_add_onion_helper_add_service(void *arg)
rend_service_port_config_t *portcfg;
smartlist_t *portcfgs;
char *address_out_good, *address_out_bad;
+ hs_service_t *service_good = NULL;
+ hs_service_t *service_bad = NULL;
(void) arg;
@@ -831,7 +833,7 @@ test_hs_control_add_onion_helper_add_service(void *arg)
add_onion_helper_add_service(HS_VERSION_THREE, &sk_good, portcfgs, 1, 1,
REND_V3_AUTH, NULL, list_good, &address_out_good);
- hs_service_t *service_good = find_service(global_map, &pk_good);
+ service_good = find_service(global_map, &pk_good);
tt_int_op(smartlist_len(service_good->config.clients), OP_EQ, 1);
hs_service_free(service_good);
@@ -846,7 +848,7 @@ test_hs_control_add_onion_helper_add_service(void *arg)
add_onion_helper_add_service(HS_VERSION_THREE, &sk_bad, portcfgs, 1, 1,
REND_V3_AUTH, NULL, list_bad, &address_out_bad);
- hs_service_t *service_bad = find_service(global_map, &pk_bad);
+ service_bad = find_service(global_map, &pk_bad);
tt_int_op(smartlist_len(service_bad->config.clients), OP_EQ, 0);