From 93683700b327f2d07ff1e6c79ba2b0a178c7b31e Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 1 Mar 2011 12:46:12 -0500 Subject: Initialise variables that get freed in out label --- telepathy-logger/log-store-xml.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/telepathy-logger/log-store-xml.c b/telepathy-logger/log-store-xml.c index cddaf66..c5fe566 100644 --- a/telepathy-logger/log-store-xml.c +++ b/telepathy-logger/log-store-xml.c @@ -462,11 +462,11 @@ add_text_event (TplLogStoreXml *self, TplEntity *sender; const gchar *body_str; gchar *avatar_token = NULL; - gchar *body; - gchar *timestamp; + gchar *body = NULL; + gchar *timestamp = NULL; gchar *contact_name = NULL; - gchar *contact_id; - gchar *event; + gchar *contact_id = NULL; + gchar *event = NULL; TpChannelTextMessageType msg_type; g_return_val_if_fail (error == NULL || *error == NULL, FALSE); -- cgit v1.2.1 From 7d0f14fa5dd076a62f1ac7ab724c41a7af5cfbf0 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 1 Mar 2011 12:58:33 -0500 Subject: Remove GNOME and GNOME_DOC stuff from configure --- configure.ac | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.ac b/configure.ac index 6f9584f..7b00710 100644 --- a/configure.ac +++ b/configure.ac @@ -80,8 +80,6 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_AUX_DIR(.) -GNOME_COMMON_INIT - AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define no-dist-gzip tar-ustar -Wno-portability) AC_SEARCH_LIBS([strerror],[cposix]) AC_PROG_CC @@ -91,7 +89,6 @@ AM_PROG_MKDIR_P AM_PATH_GLIB_2_0 AC_PATH_XTRA IT_PROG_INTLTOOL([0.35.0]) -GNOME_DOC_INIT([0.17.3]) AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool) GLIB_GSETTINGS GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal` -- cgit v1.2.1 From 4e8b207a29871f4ddf13019d7ddb5e27430bef37 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 1 Mar 2011 12:58:57 -0500 Subject: Logger is now fully LGPL, no need to mention GPL --- README | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README b/README index 8dc74d5..1f7336e 100644 --- a/README +++ b/README @@ -10,11 +10,6 @@ information related to logging (most frequent contacts, etc.). It also provides a GLib-compatible client API for making bulk log requests (e.g. for display logs in applications without having to provide lots of information over D-Bus). -N.B. telepathy-logger and libtelepathy-logger currently include some - GPL-licensed code, so can be considered licensed under the GPL. - It is our eventual goal to allow libtelepathy-logger to be licensed under - the LGPL v2.1. - TPL is currently under development, please refer to http://telepathy.freedesktop.org/wiki/Logger for more information. -- cgit v1.2.1