[MERGED] libosmo-sccp[master]: ss7: Fix compilation error (warning)

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Thu Jun 22 22:47:45 UTC 2017


Neels Hofmeyr has submitted this change and it was merged.

Change subject: ss7: Fix compilation error (warning)
......................................................................


ss7: Fix compilation error (warning)

In osmo_ss7_route_create() as is only initalized if lset can not
be initalized. If lset can be initalized, as will not be used so
everything is fine. However, the compiler complains that as may
not be initalized. Initalizing as to NULL solves the problem.

Change-Id: Ibcb3ebf9aaa7717cb553242517abce1499bc9c2a
---
M src/osmo_ss7.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Neels Hofmeyr: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/osmo_ss7.c b/src/osmo_ss7.c
index 78b22a7..9477543 100644
--- a/src/osmo_ss7.c
+++ b/src/osmo_ss7.c
@@ -723,7 +723,7 @@
 {
 	struct osmo_ss7_route *rt;
 	struct osmo_ss7_linkset *lset;
-	struct osmo_ss7_as *as;
+	struct osmo_ss7_as *as = NULL;
 
 	OSMO_ASSERT(ss7_initialized);
 	lset = osmo_ss7_linkset_find_by_name(rtbl->inst, linkset_name);

-- 
To view, visit https://gerrit.osmocom.org/3002
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibcb3ebf9aaa7717cb553242517abce1499bc9c2a
Gerrit-PatchSet: 2
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: dexter <pmaier at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: laforge <laforge at gnumonks.org>



More information about the gerrit-log mailing list