Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] gdbus: Use g_dbus_create_error_valist internally
@ 2015-04-07 20:10 Szymon Janc
  2015-04-07 20:10 ` [PATCH 2/2] gdbus: Fix crash in g_dbus_create_error_valist Szymon Janc
  2015-04-09 14:39 ` [PATCH 1/2] gdbus: Use g_dbus_create_error_valist internally Szymon Janc
  0 siblings, 2 replies; 3+ messages in thread
From: Szymon Janc @ 2015-04-07 20:10 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

There is no need to duplicate code in g_dbus_send_error_valist.
---
 gdbus/object.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gdbus/object.c b/gdbus/object.c
index 4d5a64c..c3c137b 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -1530,11 +1530,8 @@ gboolean g_dbus_send_error_valist(DBusConnection *connection,
 					const char *format, va_list args)
 {
 	DBusMessage *error;
-	char str[1024];
-
-	vsnprintf(str, sizeof(str), format, args);
 
-	error = dbus_message_new_error(message, name, str);
+	error = g_dbus_create_error_valist(message, name, format, args);
 	if (error == NULL)
 		return FALSE;
 
-- 
1.9.3


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

end of thread, other threads:[~2015-04-09 14:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-07 20:10 [PATCH 1/2] gdbus: Use g_dbus_create_error_valist internally Szymon Janc
2015-04-07 20:10 ` [PATCH 2/2] gdbus: Fix crash in g_dbus_create_error_valist Szymon Janc
2015-04-09 14:39 ` [PATCH 1/2] gdbus: Use g_dbus_create_error_valist internally Szymon Janc

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