After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 572960 - segfaults in gconf_signatures_changed()
segfaults in gconf_signatures_changed()
Status: RESOLVED FIXED
Product: evolution
Classification: Applications
Component: Shell
2.24.x (obsolete)
Other Linux
: Normal normal
: ---
Assigned To: Evolution Shell Maintainers Team
Evolution QA team
evolution[signatures]
Depends on:
Blocks:
 
 
Reported: 2009-02-24 10:22 UTC by Sebastien Bacher
Modified: 2009-09-10 18:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.23/2.24



Description Sebastien Bacher 2009-02-24 10:22:19 UTC
The bug has been opened on https://bugs.launchpad.net/bugs/320538

"Using Ubuntu 8.10 x86_64, evolution-2.24.3-0ubuntu1: As soon as I start Evolution, it *immediately* segfaults.

  • #0 gconf_signatures_changed
    at e-signature-list.c line 213
  • #1 e_signature_list_construct
    at e-signature-list.c line 320
  • #2 e_signature_list_new
    at e-signature-list.c line 296
  • #3 mail_config_init
    at mail-config.c line 357
  • #4 make_factory
    at mail-component-factory.c line 93
  • #5 bonobo_activation_activate_shlib_server
    from /usr/lib/libbonobo-activation.so.4
  • #6 ??
    from /usr/lib/libbonobo-activation.so.4
  • #7 bonobo_activation_activate
    from /usr/lib/libbonobo-activation.so.4
  • #8 bonobo_activation_activate_from_id
    from /usr/lib/libbonobo-activation.so.4
  • #9 query_components
    at e-component-registry.c line 175
  • #10 e_component_registry_peek_list
    at e-component-registry.c line 270
  • #11 e_shell_construct
    at e-shell.c line 695
  • #12 e_shell_new
    at e-shell.c line 745
  • #13 idle_cb
    at main.c line 332
  • #14 g_main_context_dispatch
    from /usr/lib/libglib-2.0.so.0
  • #15 ??
    from /usr/lib/libglib-2.0.so.0
  • #16 g_main_loop_run
    from /usr/lib/libglib-2.0.so.0
  • #17 bonobo_main
    from /usr/lib/libbonobo-2.so.0
  • #18 main
    at main.c line 690

Comment 1 Matthew Barnes 2009-02-24 15:34:53 UTC
My guess is e_signature_new_from_xml() failed for some reason and returned NULL.  We of course don't check for NULL and just blindly dereference the pointer.

               211: signature = e_signature_new_from_xml (l->data);
               212: have_autogen |= signature->autogen;
      crash -> 213: if (!signature->uid) {
               214:         signature->uid = e_uid_new ();
               215:         resave = TRUE;
               216: }
Comment 2 Milan Crha 2009-02-27 15:01:43 UTC
Seb, could you ask for the content of /apps/evolution/mail/signatures
to try to reproduce on his/her data, please? Thanks in advance.

Matt, could be, though on 212 is also signature->, maybe it's off by one line.
Comment 3 Nicolas Brouard 2009-09-09 13:31:57 UTC
On evolution-2.26.3-1.1mdv2009.1, I have the same errors. 
Clearing .evolution and gconf-editor give an empty signature: "[]"
Crash is:
gdb /usr/bin/evolution 
GNU gdb 6.8-6mdv2009.1 (Mandriva Linux release 2009.1)
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i586-mandriva-linux-gnu"...
(gdb) r
Starting program: /usr/bin/evolution 
[Thread debugging using libthread_db enabled]
[New Thread 0xb64356e0 (LWP 12854)]

Program received signal SIGSEGV, Segmentation fault.
gconf_signatures_changed (client=0x9384aa8, cnxn_id=1191182347, entry=0x0, user_data=0x937d5b8)
    at e-signature-list.c:212
212				have_autogen |= signature->autogen;

If you add one entry it will work:
<?xml version="1.0"?><signature name="Autogenerated" uid="1119860287.6720.0@henry" auto="true" format="text/html"/>
but if you add a comma "," (meaning an empty second signature) it will crash probably for the reason raised above by Matthew Barnes.

On a very new installation of Linux and evolution, Evolution is crashing.
Comment 4 Milan Crha 2009-09-10 18:47:59 UTC
Created commit d24e00a in evo master (2.29.1+)
Created commit de1a7cd in evo gnome-2-28 (2.27.93+)

Thanks for the pointers. I was unable to reproduce with an empty list of signatures, thus it's possible your list seems empty, but contains one space or something "not visible", as with something like that I was able to reproduce it, on both 2.27 and master branches, even the code in both changed, thus it was crashing later. Nonetheless, with the above commits it doesn't crash any more, it ignores incorrect signatures and drops them on start/load.