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 459004 - Parsing OptionContext with Gnome::Main::Main causes failed assertion
Parsing OptionContext with Gnome::Main::Main causes failed assertion
Status: RESOLVED WONTFIX
Product: libgnomemm
Classification: Other
Component: general
git master
Other All
: Normal critical
: ---
Assigned To: libgnomemm-maint
libgnomemm-maint
gnome[unmaintained]
Depends on:
Blocks:
 
 
Reported: 2007-07-21 15:16 UTC by Christian Lundgren
Modified: 2018-08-17 19:27 UTC
See Also:
GNOME target: ---
GNOME version: 2.17/2.18



Description Christian Lundgren 2007-07-21 15:16:59 UTC
Steps to reproduce:
1. Build this test case
//  g++ main.cc -o main_test `pkg-config libgnomemm-2.6 --libs --cflags`

#include <libgnomemm/main.h>
#include <libgnomemm/init.h>

int main(int argc, char* argv[])
{
	Glib::OptionGroup options("foo", "bar");
	Glib::OptionContext context;
	context.set_main_group(options);

	Gnome::Main app("foobar", "0.1", Gnome::module_info_get(), argc, argv, context);
}
2. run ./main_test
3. see it crash

Stack trace:
(gdb) run
Starting program: /tmp/main_test 
[Thread debugging using libthread_db enabled]
[New Thread -1208629536 (LWP 14536)]

(main_test:14536): GLib-CRITICAL **: g_option_group_free: assertion `group != NULL' failed

Program received signal SIGSEGV, Segmentation fault.

Thread NaN (LWP 14536)

  • #0 g_list_foreach
    from /lib/libglib-2.0.so.0
  • #1 g_option_context_free
    from /lib/libglib-2.0.so.0
  • #2 ??
    from /usr/lib/libgnome-2.so.0
  • #3 g_object_unref
    from /lib/libgobject-2.0.so.0
  • #4 ??
    from /usr/lib/libgnome-2.so.0
  • #5 exit
    from /lib/libc.so.6
  • #6 __libc_start_main
    from /lib/libc.so.6
  • #7 _start


Other information:
Using context.parse(argc, argv) instead of Gnome::Main::Main works fine.
Comment 1 Christian Lundgren 2007-07-21 15:43:52 UTC
You can actually just do this, it will produce the same result

int main(int argc, char* argv[])
{
        Glib::OptionContext context;

        Gnome::Main app("foobar", "0.1", Gnome::module_info_get(), argc, argv,
context);
}
Comment 2 Jonathon Jongsma 2007-07-21 16:41:45 UTC
The Gnome::Main constructor passes the context along to gnome_program_init(), and according to the documentation [1], gnome_program_init() takes ownership of the option context.  So it looks like when main() exits, the option context is getting destroyed by the OptionContext destructor and also by libgnome.  Re-writing the program like this 'solves' the issue, but it's not obvious that it's necessary.  This should either be clearly documented somewhere, or it should be changed so that the Gnome::Main cosntructor creates a copy of the passed context so that we don't get double-free problems (but I'm not sure if that's possible without breaking the spirit of a stable API)

// g++ main.cc -g -o main_test `pkg-config libgnomemm-2.6 libgnomeuimm-2.6 --libs --cflags`

#include <libgnomemm/main.h>
#include <libgnomemm/init.h>
#include <libgnomeuimm/init.h>

int main(int argc, char* argv[])
{
	Glib::OptionGroup options("foo", "bar");
	Glib::OptionContext* context = new Glib::OptionContext();;
	context->set_main_group(options);

	Gnome::Main app("foobar", "0.1", Gnome::UI::module_info_get(), argc, argv, *context);
}

[1] http://developer.gnome.org/doc/API/2.0/libgnome/libgnome-gnome-program.html#gnome-program-init
Comment 3 Murray Cumming 2007-07-22 19:31:59 UTC
> gnome_program_init() takes ownership of the option context

That is unusual. I guess we need some way to give ownership. OptionContext might be able to do this already.
Comment 4 André Klapper 2018-08-17 19:27:13 UTC
libgnomemm is not under active development anymore since 2010.
Its codebase has been archived:
https://gitlab.gnome.org/Archive/libgnomemm/commits/master

Closing this report as WONTFIX as part of Bugzilla Housekeeping to reflect
reality. Please feel free to reopen this ticket (or rather transfer the project
to GNOME Gitlab, as GNOME Bugzilla is deprecated) if anyone takes the
responsibility for active development again.