cpw.gillux.detachablepurple: ee46c038: Little type fix.
gillux at soc.pidgin.im
gillux at soc.pidgin.im
Sun May 20 13:22:05 EDT 2012
----------------------------------------------------------------------
Revision: ee46c03811ee526a9809bfbb9029f8106ca7d637
Parent: 7fc0ebb5906f481978c6e77c0a216d7c7222aa70
Author: gillux at soc.pidgin.im
Date: 05/20/12 11:38:54
Branch: im.pidgin.cpw.gillux.detachablepurple
URL: http://d.pidgin.im/viewmtn/revision/info/ee46c03811ee526a9809bfbb9029f8106ca7d637
Changelog:
Little type fix.
Changes against parent 7fc0ebb5906f481978c6e77c0a216d7c7222aa70
patched libpurple/dbus/constructor.c
-------------- next part --------------
============================================================
--- libpurple/dbus/constructor.c b7c7943a63227c1a1410e3b8009be930b324b679
+++ libpurple/dbus/constructor.c 08cc1c5a733b296142670299586e444a8aa520ff
@@ -327,7 +327,7 @@ purple_constructor_load_pobj_unsync(GVar
PurpleObject *pobject;
gpointer *obj;
GVariant *props;
- const gchar *dbus_path;
+ gchar *dbus_path;
g_variant_get(vpobject, "(o at a(sv))", &dbus_path, &props);
@@ -338,7 +338,7 @@ purple_constructor_load_pobj_unsync(GVar
purple_object_dbus_init(obj, FALSE);
g_variant_unref(props);
- g_free((gchar*)dbus_path);
+ g_free(dbus_path);
return obj;
}
More information about the Commits
mailing list