pespin submitted this change.

View Change

Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified lynxis lazus: Looks good to me, approved
Fix warning in tcap_transaction_tracking_test

Change-Id: Ib3b361e2d16a9dab9b93ec9c211340f80f475b42
---
M tests/tcap/tcap_transaction_tracking_test.c
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/tcap/tcap_transaction_tracking_test.c b/tests/tcap/tcap_transaction_tracking_test.c
index 7ad52a9..ce3605b 100644
--- a/tests/tcap/tcap_transaction_tracking_test.c
+++ b/tests/tcap/tcap_transaction_tracking_test.c
@@ -228,7 +228,7 @@
uint32_t hlr_tids[] = { 24, 25, 26};
uint32_t vlr_tids[] = { 44, 45, 46};

- struct tcap_trans_track_entry *entry;
+ struct tcap_trans_track_entry *entry = NULL;

printf("GC test\n");

@@ -239,6 +239,7 @@
&gvlr, &vlr_tids[i]);
OSMO_ASSERT(entry);
}
+ OSMO_ASSERT(entry);

OSMO_ASSERT(count_unique_hash_entries(as) == 3);
/* No entries should be GC'ed, because all entries should be within 10 secs */

To view, visit change 41535. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: Ib3b361e2d16a9dab9b93ec9c211340f80f475b42
Gerrit-Change-Number: 41535
Gerrit-PatchSet: 2
Gerrit-Owner: daniel <dwillmann@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: lynxis lazus <lynxis@fe80.eu>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>