diff options
author | Alexey Fomenko <ext-alexey.fomenko@nokia.com> | 2011-03-02 04:01:24 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-02 04:01:24 +0100 |
commit | 708dd4c98662670f3104b71c2fc5eef82bb726a8 (patch) | |
tree | e12d020417638f0b7e5f7363092eb5a28ef9321b /networking | |
parent | b80acf58f16339078da5cbee88a322f2450aa2ad (diff) | |
download | busybox-708dd4c98662670f3104b71c2fc5eef82bb726a8.tar.gz |
add missing fclose's
Signed-off-by: Alexey Fomenko <ext-alexey.fomenko@nokia.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/route.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/route.c b/networking/route.c index b7d08dd63..ac4fbb472 100644 --- a/networking/route.c +++ b/networking/route.c @@ -537,6 +537,7 @@ void FAST_FUNC bb_displayroutes(int noresolve, int netstatfmt) printf("%-6d %-2d %7d %s\n", metric, ref, use, devname); } } + fclose(fp); } #if ENABLE_FEATURE_IPV6 @@ -625,6 +626,7 @@ static void INET6_displayroutes(void) } } while (1); } + fclose(fp); } #endif |