Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] g_string_free shell be used in IRMC
@ 2010-11-11 20:46 Dmitriy Paliy
  2010-11-11 20:46 ` [PATCH 2/2] string_free is specific to filesystem only Dmitriy Paliy
  2010-11-11 21:23 ` [PATCH 1/2] g_string_free shell be used in IRMC Johan Hedberg
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitriy Paliy @ 2010-11-11 20:46 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Dmitriy Paliy

g_string_free instead of string_free shell be used in IRMC plugin.
string_free is a callback function specific to filesystem plugin
only and used by OBEX drivers to close an OBEX object.
---
 plugins/irmc.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/plugins/irmc.c b/plugins/irmc.c
index 28c5e50..f7ad33b 100644
--- a/plugins/irmc.c
+++ b/plugins/irmc.c
@@ -254,10 +254,8 @@ static void irmc_disconnect(struct obex_session *os, void *user_data)
 		g_free(irmc->params);
 	}
 
-	if (irmc->buffer) {
-		string_free(irmc->buffer);
-		irmc->buffer = NULL;
-	}
+	if (irmc->buffer)
+		g_string_free(irmc->buffer, TRUE);
 
 	g_free(irmc);
 }
@@ -355,7 +353,7 @@ static void *irmc_open_pb(const char *name, struct irmc_session *irmc,
 		irmc->buffer = mybuf;
 	else {
 		irmc->buffer = g_string_append(irmc->buffer, mybuf->str);
-		string_free(mybuf);
+		g_string_free(mybuf, TRUE);
 	}
 
 	return irmc;
@@ -433,7 +431,7 @@ static int irmc_close(void *object)
 	DBG("");
 
 	if (irmc->buffer) {
-		string_free(irmc->buffer);
+		g_string_free(irmc->buffer, TRUE);
 		irmc->buffer = NULL;
 	}
 
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-11-11 21:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-11 20:46 [PATCH 1/2] g_string_free shell be used in IRMC Dmitriy Paliy
2010-11-11 20:46 ` [PATCH 2/2] string_free is specific to filesystem only Dmitriy Paliy
2010-11-11 21:23   ` Johan Hedberg
2010-11-11 21:23 ` [PATCH 1/2] g_string_free shell be used in IRMC Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox