aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2021-01-17 20:07:54 +0100
committerAlexander Couzens <lynxis@fe80.eu>2021-01-18 10:47:47 +0100
commite19b7966e217fd556889af7a2b2aa77155c4516d (patch)
treea54c5d10d9c61080a2e0bbca82e3e33ff9392929
parent5443ff8af389a809d035d5cb912cbe879b36d95c (diff)
test: gprs_ns2: don't leak the talloc context
Makes the address sanitizer happy Change-Id: Ibf926d8db88cdb403d29de5e666dfb71eefc7b72
-rw-r--r--tests/gb/gprs_ns2_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/gb/gprs_ns2_test.c b/tests/gb/gprs_ns2_test.c
index 86a01902..d53dc88f 100644
--- a/tests/gb/gprs_ns2_test.c
+++ b/tests/gb/gprs_ns2_test.c
@@ -160,5 +160,6 @@ int main(int argc, char **argv)
test_nse_transfer_cap(ctx);
printf("===== NS2 protocol test END\n\n");
+ talloc_free(ctx);
exit(EXIT_SUCCESS);
}