From 54a5e1ee48572c8912d403b46a6fd8ebb4b9e106 Mon Sep 17 00:00:00 2001 From: MAN-AT-ARMS Date: Sat, 22 Feb 2014 21:18:34 -0500 Subject: Release netowrk bindings on shutdown --- src/sys/sys_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sys/sys_main.c b/src/sys/sys_main.c index 4b04c70b..9ccd6d2e 100644 --- a/src/sys/sys_main.c +++ b/src/sys/sys_main.c @@ -219,6 +219,8 @@ static __attribute__ ((noreturn)) void Sys_Exit( int exitCode ) remove( pidFile ); } + NET_Shutdown( ); + Sys_PlatformExit( ); exit( exitCode ); -- cgit