commit | a4065069e6bdd0bc7475312530b0e9457f818e0d | [log] [tgz] |
---|---|---|
author | David Lamparter <equinox@opensourcerouting.org> | Tue Sep 15 02:12:23 2015 -0700 |
committer | Martin Winter <mwinter@opensourcerouting.org> | Fri Oct 16 23:50:46 2015 -0700 |
tree | b983314c1b7152fe7d351c99e79a7190d44ef363 | |
parent | ce93c34d51ea30d1ba4f699af5601502bbbbcdf8 [diff] |
ospf6d: fix uninitialized warning in SNMP Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
diff --git a/ospf6d/ospf6_snmp.c b/ospf6d/ospf6_snmp.c index ef44e4c..307d420 100644 --- a/ospf6d/ospf6_snmp.c +++ b/ospf6d/ospf6_snmp.c
@@ -628,7 +628,7 @@ int len; oid *offset; int offsetlen; - struct ospf6_area *oa; + struct ospf6_area *oa = NULL; struct listnode *node; struct interface *iif; struct ospf6_interface *oi = NULL;