]> err.no Git - eweouz/commitdiff
Add g_type_init calls
authorTollef Fog Heen <tfheen@err.no>
Wed, 7 Mar 2012 07:12:32 +0000 (08:12 +0100)
committerTollef Fog Heen <tfheen@err.no>
Wed, 7 Mar 2012 07:12:32 +0000 (08:12 +0100)
debian/changelog
src/eweouz-dump-addressbook.c
src/eweouz-write-addressbook.c

index 9ef3b59a392bf8f1989c9444f66531ff0d49601a..7190e74a538e548768bbc11396ee0ad6d1d4ca53 100644 (file)
@@ -1,3 +1,11 @@
+eweouz (0.7) UNRELEASED; urgency=low
+
+  * Add g_type_init calls to the C utilities, to make them stop
+    segfaulting.  Apparently the e-d-s libraries require that now.
+    Closes: #662885
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Wed, 07 Mar 2012 08:10:49 +0100
+
 eweouz (0.6) unstable; urgency=low
 
   * Make it possible to cycle through the returned addresses if more than
index 94d81f90f5de024ebf5cc5146b09f40304d4ab62..2f6dea982f514feb28008541076d3b35c4710b80 100644 (file)
@@ -72,6 +72,7 @@ int main(int argc, char **argv)
 
        setlocale (LC_ALL, "");
 
+       g_type_init();
        optioncontext = g_option_context_new ("- whack address book");
        g_option_context_add_main_entries (optioncontext, entries, NULL);
        g_option_context_parse (optioncontext, &argc, &argv, &error);
index 58bffbe75b9bcf9be5ec186aa34048b04122055c..c3da2617d51f998e2dd668f166d6afc57d6e5b4f 100644 (file)
@@ -49,6 +49,8 @@ int main(int argc, char **argv)
 
        setlocale (LC_ALL, "");
 
+       g_type_init();
+
        optioncontext = g_option_context_new ("- whack address book");
        g_option_context_add_main_entries (optioncontext, entries, NULL);
        g_option_context_parse (optioncontext, &argc, &argv, &error);