From 0cbf61c8dbb8e1f22333c4803a805a088b546f07 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 31 Jan 2011 18:48:53 +0000 Subject: [PATCH 2/3] bus_driver_generate_introspect_string: close correctly --- bus/driver.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bus/driver.c b/bus/driver.c index d82018f..102bfa7 100644 --- a/bus/driver.c +++ b/bus/driver.c @@ -1849,10 +1849,10 @@ bus_driver_generate_introspect_string (DBusString *xml) if (ih->extra_introspection != NULL && !_dbus_string_append (xml, ih->extra_introspection)) return FALSE; - } - if (!_dbus_string_append (xml, " \n")) - return FALSE; + if (!_dbus_string_append (xml, " \n")) + return FALSE; + } if (!_dbus_string_append (xml, "\n")) return FALSE; -- 1.7.2.3