From 205d40db829724b5b451975a9c5273aac9ab14fa Mon Sep 17 00:00:00 2001 From: Guillaume Zajac Date: Thu, 17 Feb 2011 18:27:13 +0100 Subject: [PATCH] test-server: Fix crash when remote disconnects If the remote side kills the connection when PPP is established, we should not try to resume the AT server. --- gatchat/test-server.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gatchat/test-server.c b/gatchat/test-server.c index e574d64c..28bad1d9 100644 --- a/gatchat/test-server.c +++ b/gatchat/test-server.c @@ -137,6 +137,12 @@ static void ppp_disconnect(GAtPPPDisconnectReason reason, gpointer user) g_at_ppp_unref(ppp); ppp = NULL; + if (reason == G_AT_PPP_REASON_LINK_DEAD) { + g_at_server_unref(server); + server = NULL; + return; + } + g_at_server_resume(server); g_at_server_set_debug(server, server_debug, "Server");