commit | 6d9362274e8ba2d57ffe17aa735eb941ac3d5fbc | [log] [tgz] |
---|---|---|
author | David Lamparter <equinox@opensourcerouting.org> | Tue Sep 15 02:59:04 2015 -0700 |
committer | Martin Winter <mwinter@opensourcerouting.org> | Fri Oct 16 23:50:46 2015 -0700 |
tree | 690bb673621812ce671cac14927933af460a457c | |
parent | 285ed0c62af4f57902d5deacc621f290fdeec276 [diff] [blame] |
zebra/solaris: fix uninitialised vars Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
diff --git a/zebra/ioctl_solaris.c b/zebra/ioctl_solaris.c index 82e39be..aa2b9a4 100644 --- a/zebra/ioctl_solaris.c +++ b/zebra/ioctl_solaris.c
@@ -310,7 +310,7 @@ void if_get_flags (struct interface *ifp) { - int ret4, ret6; + int ret4 = 0, ret6 = 0; uint64_t newflags = 0; uint64_t tmpflags;