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 391655 - crash in Epiphany Web Browser: Starting Epiphany with G...
crash in Epiphany Web Browser: Starting Epiphany with G...
Status: RESOLVED DUPLICATE of bug 327414
Product: epiphany
Classification: Core
Component: General
unspecified
Other All
: High critical
: ---
Assigned To: Epiphany Maintainers
Marco Pesenti Gritti
Depends on:
Blocks:
 
 
Reported: 2007-01-01 21:25 UTC by Wouter Bolsterlee (uws)
Modified: 2007-01-03 09:51 UTC
See Also:
GNOME target: ---
GNOME version: 2.15/2.16



Description Wouter Bolsterlee (uws) 2007-01-01 21:25:55 UTC
Version: 2.17.4.90

What were you doing when the application crashed?
Starting Epiphany with G_DEBUG=fatal_warnings


Distribution: Debian 4.0
Gnome Release: 2.16.1 2006-10-24 (JHBuild)
BugBuddy Version: 2.17.3

System: Linux 2.6.19 #4 Sun Dec 31 02:34:48 CET 2006 i686
X Vendor: The X.Org Foundation
X Vendor Release: 70101000
Selinux: No
Accessibility: Enabled

Memory status: size: 38944768 vsize: 0 resident: 38944768 share: 0 rss: 12890112 rss_rlim: 0
CPU usage: start_time: 1167686681 rtime: 0 utime: 14 stime: 0 cutime:12 cstime: 0 timeout: 2 it_real_value: 0 frequency: 0

Backtrace was generated from '/opt/gnome-2-16/bin/epiphany'

Using host libthread_db library "/lib/tls/libthread_db.so.1".
[Thread debugging using libthread_db enabled]
[New Thread -1242118464 (LWP 3352)]
0xb6f6820e in __waitpid_nocancel () from /lib/tls/libpthread.so.0

Thread 1 (Thread -1242118464 (LWP 3352))

  • #0 __waitpid_nocancel
    from /lib/tls/libpthread.so.0
  • #1 libgnomeui_segv_handle
    at gnome-ui-init.c line 870
  • #2 <signal handler called>
  • #3 IA__g_logv
  • #4 IA__g_log
    at gmessages.c line 517
  • #5 gnome_vfs_dns_sd_browse
    at gnome-vfs-dns-sd.c line 1132
  • #6 ephy_bookmarks_init
    at ephy-bookmarks.c line 1006
  • #7 IA__g_type_create_instance
    at gtype.c line 1567
  • #8 g_object_constructor
    at gobject.c line 1041
  • #9 IA__g_object_newv
    at gobject.c line 937
  • #10 IA__g_object_new_valist
    at gobject.c line 981
  • #11 IA__g_object_new
    at gobject.c line 795
  • #12 ephy_bookmarks_new
    at ephy-bookmarks.c line 1249
  • #13 ephy_shell_get_bookmarks
    at ephy-shell.c line 673
  • #14 smart_bookmarks_extension_init
    at smart-bookmarks-extension.c line 650
  • #15 IA__g_type_create_instance
    at gtype.c line 1567
  • #16 g_object_constructor
    at gobject.c line 1041
  • #17 IA__g_object_newv
    at gobject.c line 937
  • #18 IA__g_object_new_valist
    at gobject.c line 981
  • #19 IA__g_object_new
    at gobject.c line 795
  • #20 ephy_module_new_object
    at ephy-module.c line 197
  • #21 impl_get_object
    at ephy-shlib-loader.c line 197
  • #22 ephy_loader_get_object
    at ephy-loader.c line 60
  • #23 sync_loaded_extensions
    at ephy-extensions-manager.c line 710
  • #24 ephy_extensions_manager_startup
    at ephy-extensions-manager.c line 1119
  • #25 ephy_shell_get_extensions_manager
    at ephy-shell.c line 736
  • #26 ephy_shell_get_session
    at ephy-shell.c line 631
  • #27 main
    at ephy-main.c line 331
  • #0 __waitpid_nocancel
    from /lib/tls/libpthread.so.0


----------- .xsession-errors (61 sec old) ---------------------
GTK Accessibility Module initialized
Bonobo accessibility support initialized
(epiphany:3303): libgnomevfs-WARNING **: Failed to create service browser: Bad state
(epiphany:3303): libgnomevfs-WARNING **: Failed to create service browser: Bad state
(epiphany:3303): libgnomevfs-WARNING **: Failed to create service browser: Bad state
sys:1: Warning: gsignal.c:1019: unable to lookup signal "activate" of unloaded type `MaiAtkObject'
sys:1: Warning: g_signal_emit_valist: assertion `signal_id > 0' failed
GTK Accessibility Module initialized
Bonobo accessibility support initialized
--------------------------------------------------
Comment 1 Wouter Bolsterlee (uws) 2007-01-01 21:34:59 UTC
I should note that Avahi is not running.
Comment 2 Diego Escalante Urrelo (not reading bugmail) 2007-01-01 21:53:15 UTC
From src/bookmarks/ephy-bookmarks.c:



        if (gnome_vfs_dns_sd_resolve (&reshandle,
                                      service->name,
                                      service->type,
                                      service->domain,
                                      SD_RESOLVE_TIMEOUT,
                                      (GnomeVFSDNSSDResolveCallback) resolve_cb,
                                      data,
                                      (GDestroyNotify) g_free) != GNOME_VFS_OK)
        {
                ephy_node_unref (node);
                g_free (data);

                return;
        }

The code looks ok... after all the error is that the service couldn't be created (presumably because of the lack of avahi).

I guess this is a bug in gnome-vfs, but I really don't know, I'm just guessing :).
Comment 3 Christian Persch 2007-01-01 22:43:00 UTC
> Starting Epiphany with G_DEBUG=fatal_warnings

And gnome-vfs warns when avahi doesn't run.

=> crashes, as instructed.

If you want to catch traces from warnings etc you don't want G_DEBUG, just set EPHY_DEBUG_BREAK=trap and run ephy in gdb.
Comment 4 Wouter Bolsterlee (uws) 2007-01-01 22:45:05 UTC
I don't use G_DEBUG, except for now when I wanted to get the trace for this bug report ;)
Comment 5 Christian Persch 2007-01-01 23:14:28 UTC
Oh, so the warning is the bug. Then it's a dup of some bug in gnome-vfs (don't have the # right now.)
Comment 6 Diego Escalante Urrelo (not reading bugmail) 2007-01-03 09:51:13 UTC
Thanks for the bug report. This particular bug has already been reported into our bug tracking system, but please feel free to report any further bugs you find.


*** This bug has been marked as a duplicate of 327414 ***