On Mon, Mar 8, 2010 at 7:37 PM, Dustin Nicholas Jenkins
<dustin.jenk...@nrc-cnrc.gc.ca> wrote:
> My Settings menu is locking up when trying to access it.  The entire
> Desktop becomes unusable and the Display Manager needs to be restarted.
> After posting on the Enlightenment Users mailing list, it was suggested
> that I try in the Dev list.  Here is the GDB Backtrace:

could you compile librsvg and libxml2 with debug? If possible try to
reproduce the bug within valgrind (just run as enlightenment_start
-valgrind=1). What I'm interested is in expanding this part:

#14 0x00b82ac1 in _int_free () from /lib/libc.so.6
#15 0x00b860f0 in free () from /lib/libc.so.6
#16 0x010978a0 in xmlFreeParserCtxt () from /usr/lib/libxml2.so.2
#17 0x03a1d25c in rsvg_handle_close () from /usr/lib/librsvg-2.so.2
#18 0x06466f65 in evas_image_load_file_head_svg (ie=0xb6c89f58,
    file=0x9c51740
"/usr/share/virt-manager/pixmaps/virt-manager-icon.svg", key=0x0,
    error=0xbfc314d0) at evas_image_load_svg.c:124

from evas_image_load_svg.c we're effectively just doing:

   rsvg = rsvg_handle_new_from_file(file, NULL);
   rsvg_handle_set_dpi(rsvg, 75.0);
   rsvg_handle_get_dimensions(rsvg, &dim);
   rsvg_handle_close(rsvg, NULL);
   g_object_unref(rsvg);

and it's crashing on rsvg_handle_close(), which is quite weird as it
worked for set_dpi and get_dimensions :-/

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--------------------------------------
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to