From d4d16176840600ba4ca4e8104e0e8b7d82de38fd Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 14 Oct 2009 16:34:35 -0500 Subject: Fix: Do not send shutdown more than once --- gatchat/gatmux.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gatchat/gatmux.c') diff --git a/gatchat/gatmux.c b/gatchat/gatmux.c index 0b42ebcf..96576de5 100644 --- a/gatchat/gatmux.c +++ b/gatchat/gatmux.c @@ -89,6 +89,7 @@ struct _GAtMux { void *driver_data; /* Driver data */ char buf[MUX_BUFFER_SIZE]; /* Buffer on the main mux */ int buf_used; /* Bytes of buf being used */ + gboolean shutdown; }; struct mux_setup_data { @@ -545,6 +546,7 @@ GAtMux *g_at_mux_new(GIOChannel *channel, const GAtMuxDriver *driver) mux->ref_count = 1; mux->driver = driver; + mux->shutdown = TRUE; mux->channel = channel; g_io_channel_ref(channel); @@ -596,6 +598,8 @@ gboolean g_at_mux_start(GAtMux *mux) G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL, received_data, mux, NULL); + mux->shutdown = FALSE; + return TRUE; } @@ -603,6 +607,9 @@ gboolean g_at_mux_shutdown(GAtMux *mux) { int i; + if (mux->shutdown == TRUE) + return FALSE; + if (mux->channel == NULL) return FALSE; @@ -619,6 +626,8 @@ gboolean g_at_mux_shutdown(GAtMux *mux) if (mux->driver->shutdown) mux->driver->shutdown(mux); + mux->shutdown = TRUE; + return TRUE; } -- cgit v1.2.3