Diff between adf61cc8acb464386b129dd7cbe02f933fa12f2c and 4017e79914a53d9dfe321f17355b77891062f0e9

Changed Files

File Additions Deletions Status
obexd/src/obex.c +0 -6 modified

Full Patch

diff --git a/obexd/src/obex.c b/obexd/src/obex.c
index 308e56d..a4bae85 100644
--- a/obexd/src/obex.c
+++ b/obexd/src/obex.c
@@ -54,8 +54,6 @@
 #include "service.h"
 #include "transport.h"
 
-static GSList *sessions = NULL;
-
 typedef struct {
 	uint8_t  version;
 	uint8_t  flags;
@@ -233,8 +231,6 @@ static void os_reset_session(struct obex_session *os)
 
 static void obex_session_free(struct obex_session *os)
 {
-	sessions = g_slist_remove(sessions, os);
-
 	if (os->io) {
 		g_io_channel_shutdown(os->io, TRUE, NULL);
 		g_io_channel_unref(os->io);
@@ -1067,8 +1063,6 @@ int obex_session_start(GIOChannel *io, uint16_t tx_mtu, uint16_t rx_mtu,
 	obex_getsockname(os, &os->src);
 	obex_getpeername(os, &os->dst);
 
-	sessions = g_slist_prepend(sessions, os);
-
 	return 0;
 }