aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_hs_intropoint.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-29 13:07:13 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-29 13:07:13 -0400
commit92b4996b233a6a5d034b4ecc47b9f97985bb5886 (patch)
treea0f4f32423cbad9c4a2b8ccbc24f51b1c1b2c7ee /src/test/test_hs_intropoint.c
parentf82f8179e65c5e0021da46fd24e4bd7d8126d8f7 (diff)
parent6e9d5fc4ec40136d173be680a85a9bfb9b99fea4 (diff)
downloadtor-92b4996b233a6a5d034b4ecc47b9f97985bb5886.tar.gz
tor-92b4996b233a6a5d034b4ecc47b9f97985bb5886.zip
Merge branch 'maint-0.3.2' into maint-0.3.3
Diffstat (limited to 'src/test/test_hs_intropoint.c')
-rw-r--r--src/test/test_hs_intropoint.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/test_hs_intropoint.c b/src/test/test_hs_intropoint.c
index 55dfafbeac..5b75e38935 100644
--- a/src/test/test_hs_intropoint.c
+++ b/src/test/test_hs_intropoint.c
@@ -43,6 +43,10 @@ new_establish_intro_cell(const char *circ_nonce,
trn_cell_establish_intro_t *cell = NULL;
hs_service_intro_point_t *ip = NULL;
+ /* Ensure that *cell_out is NULL such that we can use to check if we need to
+ * free `cell` in case of an error. */
+ *cell_out = NULL;
+
/* Auth key pair is generated in the constructor so we are all set for
* using this IP object. */
ip = service_intro_point_new(NULL, 0);
@@ -56,6 +60,9 @@ new_establish_intro_cell(const char *circ_nonce,
*cell_out = cell;
done:
+ if (*cell_out == NULL)
+ trn_cell_establish_intro_free(cell);
+
service_intro_point_free(ip);
return cell_len;
}