summaryrefslogtreecommitdiff
path: root/src/client_shutdown.c
diff options
context:
space:
mode:
authorJakub Sławiński2006-02-05 15:14:03 +0100
committerJoshua Judson Rosen2014-07-17 21:15:02 +0200
commitb457fec36399c1f7de093d5e92bb4fa453b79c86 (patch)
tree2084c9a78d40213015e6f10e3e9e01bc4c0c51f1 /src/client_shutdown.c
parentUpdate copyright statements. (diff)
downloadapf-b457fec36399c1f7de093d5e92bb4fa453b79c86.tar.gz
v0.8
- Fixed: infinite loop after buffering message - Fixed: corrupt packets after closing connections in the stopped state - Fixed: bug in mapping user numbers between afclient and afserver - Fixed: premature close of the service connection - Fixed: invalid buffering when the connection is closing - Added: Multiple tunnels in one afclient<->afserver connection
Diffstat (limited to 'src/client_shutdown.c')
-rw-r--r--src/client_shutdown.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client_shutdown.c b/src/client_shutdown.c
index 8075632..bacb854 100644
--- a/src/client_shutdown.c
+++ b/src/client_shutdown.c
@@ -19,6 +19,7 @@
*/
#include <config.h>
+#include <assert.h>
#include "client_shutdown.h"
@@ -26,6 +27,12 @@ void
close_connections(int usernum, ConnectUser*** contable)
{
int i;
+
+ assert(contable != NULL);
+ if (contable == NULL) {
+ return;
+ }
+
if (*contable) {
for (i = 0; i < usernum; ++i) {
if ((ConnectUser_get_state((*contable)[i]) == S_STATE_OPEN) ||