[Bug 1216167] Re: inkscape crashed with SIGSEGV in pathv_to_linear_and_cubic_beziers()

2014-01-02 Thread Johan Engelen
I can't find anything obvious that is wrong in the code of the top 3 functions of the stack trace. One thing to try is if pathv_to_linear_and_cubic_beziers is OK if the argument is a PathVector with an empty Path in it. PathVector pv; pv.push_back(Path()); pathv_to_linear_and_cubic_beziers(pv);

[Bug 166371] Re: Illustrator CS SVG won't load: namespace URIs in entities

2013-11-12 Thread Johan Engelen
backported in r9985. Please test. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/166371 Title: Illustrator CS SVG won't load: namespace URIs in entities To manage notifications about this bug go to:

[Bug 970105] Re: inkscape crashed with SIGSEGV converting several circles to paths

2012-04-05 Thread Johan Engelen
ete ** Changed in: inkscape Milestone: None => 0.49 ** Changed in: inkscape Assignee: (unassigned) => Johan Engelen (johanengelen) ** Tags added: verification-needed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubun

[Bug 941317] Re: inkscape crashed with SIGSEGV in getObject()

2012-04-05 Thread Johan Engelen
Any way for me to reproduce it? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/941317 Title: inkscape crashed with SIGSEGV in getObject() To manage notifications about this bug go to: https://bugs.l

[Bug 941317] Re: inkscape crashed with SIGSEGV in getObject()

2012-04-05 Thread Johan Engelen
Thanks for the very detailed crash information from which I was able to find the culprit and fix it :-) rev. 11157 ** Changed in: inkscape Status: New => Fix Committed ** Changed in: inkscape Milestone: None => 0.49 ** Changed in: inkscape Assignee: (unassigned) =&

[Bug 973174] Re: inkscape crashed with SIGSEGV in Inkscape::Extension::Output::get_extension()

2012-04-05 Thread Johan Engelen
great bug hunting information! (bug introduced by me in r10821) fixed in rev. 11158 ** Changed in: inkscape Status: Confirmed => Fix Committed ** Changed in: inkscape Milestone: None => 0.49 ** Changed in: inkscape Assignee: (unassigned) => Johan Engelen (johanengelen)

[Bug 944077] Re: inkscape crashed with SIGSEGV in Inkscape::Extension::Implementation::Script::effect()

2012-04-05 Thread Johan Engelen
was fixed in rev10611 by Jazz. (comical syntax though, so I'll change that a bit now ;) ** Changed in: inkscape Status: New => Fix Committed ** Changed in: inkscape Milestone: None => 0.49 ** Changed in: inkscape Assignee: (unassigned) => JazzyNico (jazzynico) -- You received t

[Bug 970105] Re: inkscape crashed with SIGSEGV converting several circles to paths

2012-04-05 Thread Johan Engelen
I think this is the same underlying issue as 816540. marking as duplicate -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/970105 Title: inkscape crashed with SIGSEGV converting several circles to path

[Bug 970105] Re: inkscape crashed with SIGSEGV converting several circles to paths

2012-04-05 Thread Johan Engelen
bug #816540 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/970105 Title: inkscape crashed with SIGSEGV converting several circles to paths To manage notifications about this bug go to: https://bugs.

[Bug 816540] Re: inkscape crashed with signal 7 in sp_action_set_name()

2012-04-05 Thread Johan Engelen
can you reproduce this after rev11156 ? thanks ** Changed in: inkscape Status: New => Incomplete ** Tags added: verification-needed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/816540 Title:

[Bug 973055] Re: inkscape crashed with SIGSEGV in Inkscape::Extension::Implementation::Script::effect()

2012-04-05 Thread Johan Engelen
*** This bug is a duplicate of bug 944077 *** https://bugs.launchpad.net/bugs/944077 ** This bug has been marked a duplicate of bug 944077 inkscape crashed with SIGSEGV in Inkscape::Extension::Implementation::Script::effect() -- You received this bug notification because you are a member

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2012-04-05 Thread Johan Engelen
~suv: can you comment out lines 646 and 647 and see if the crash still happens? "SP_ACTIVE_DESKTOP->event_log->rememberFileSave(); SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Document saved.")); " Thanks. -- You received this bug notification because you are a

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2012-04-05 Thread Johan Engelen
for longer term testing, please try: if ( SP_ACTIVE_DESKTOP && SP_ACTIVE_DESKTOP->event_log){ SP_ACTIVE_DESKTOP->event_log->rememberFileSave(); } if ( SP_ACTIVE_DESKTOP && SP_ACTIVE_DESKTOP->messageStack()) { SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Document sa

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2012-04-05 Thread Johan Engelen
I've added testing code to trunk, have a go and see if you get any message pointing to this bug when Inkscape crashes. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/967416 Title: inkscape crashed wi

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2015-01-11 Thread Johan Engelen
I want to remind you all that the majority of Inkscape's code is not at all ready for multithreading. This save code, and all the code and data it needs for saving the document is certainly not thread safe. So the fix is to remove the _main_loop_run stuff, and just do the save right there and then

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2014-06-29 Thread Johan Engelen
It depends on quick timing. When saving the document, control returns to the GUI before the save is complete. If inkscape is closed in that period: crash. It seems a ton of crashes can happen when the save is still happening while inkscape is closed. The code is not at all ready for multithreading

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2014-06-29 Thread Johan Engelen
So to fix this, the exit procedure should be able to figure out if some threads are running in the background (the saving thread), and wait for it to start destroying objects. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bug

[Bug 967416] Re: inkscape crashed with SIGSEGV in file_save()

2014-06-29 Thread Johan Engelen
"wait for it to start destroying objects." wait for it before starting to destroy objects. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/967416 Title: inkscape crashed with SIGSEGV in file_save() T

[Bug 1275164] Re: inkscape crashed with SIGSEGV in sp_ctrlpoint_set_color()

2014-06-29 Thread Johan Engelen
how to reproduce in trunk? ** Changed in: inkscape Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1275164 Title: inkscape crashed with SIGSEGV in sp_ctrlpoint_set_co

[Bug 977003] Re: inkscape crashed with SIGSEGV in Avoid::VertInf::removeFromGraph()

2014-06-29 Thread Johan Engelen
ged => Fix Committed ** Changed in: inkscape Milestone: None => 0.91 ** Changed in: inkscape Assignee: (unassigned) => Johan Engelen (johanengelen) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launch

[Bug 977003] Re: inkscape crashed with SIGSEGV in Avoid::VertInf::removeFromGraph()

2014-06-29 Thread Johan Engelen
correction: fixed in experimental rev 13413, trunk rev 13444 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/977003 Title: inkscape crashed with SIGSEGV in Avoid::VertInf::removeFromGraph() To manage

[Bug 977003] Re: inkscape crashed with SIGSEGV in Avoid::VertInf::removeFromGraph()

2014-06-29 Thread Johan Engelen
** Changed in: inkscape (Ubuntu) Status: Triaged => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/977003 Title: inkscape crashed with SIGSEGV in Avoid::VertInf::removeFromGraph(

[Bug 1216167] Re: inkscape crashed with SIGSEGV in pathv_to_linear_and_cubic_beziers()

2014-02-27 Thread Johan Engelen
Perhaps this call void PathManipulator::_createControlPointsFromGeometry() { //... Geom::PathVector pathv = pathv_to_linear_and_cubic_beziers(_spcurve->get_pathvector()); If the _spcurve has been deleted by someone else, the _spcurve->get_pathvector() will return a corrupted pointer and will

[Bug 652138] Re: lucid->maverick rtl8192 stops working

2012-01-05 Thread Johan Engelen
I have added "blacklist r8192se_pci" and "blacklist r8192e_pci" to /etc/modprobe.d/blacklist.conf, but r8192e_pci is still loaded after reboot ('lsmod | grep8192' still shows r8292e_pci) Now I have to manually do sudo rmmod r8192e_pci sudo modprobe r8192_pci then I get Wifi working. What's wron

[Bug 227158] Re: blacklist ssb doesn't work

2012-01-05 Thread Johan Engelen
Possibly related: blacklisting wlan driver r8192e_pci does not work for me. 'blacklist r8192e_pci' is in both /etc/modprobe.d/blacklist.conf and /etc/modprobe.d/blacklist-wifi.conf, but after a reboot, it is still loaded (checked with 'lsmod | grep 8192') -- You received this bug notification

[Bug 200305] Re: inkscape crashed with SIGSEGV when exporting PNG to server in g_utf8_validate

2012-12-05 Thread Johan Engelen
may i request a new backtrace? (with debug symbols if that helps) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/200305 Title: inkscape crashed with SIGSEGV when exporting PNG to server in g_utf8_v

[Bug 515960] Re: inkscape crashed with SIGSEGV in KnotHolderEntity::update_knot()

2010-10-23 Thread Johan Engelen
I cannot reproduce it with 0.48+dev r9842 ** Changed in: inkscape Status: Confirmed => Incomplete -- inkscape crashed with SIGSEGV in KnotHolderEntity::update_knot() https://bugs.launchpad.net/bugs/515960 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 755219] Re: export prunes infinityLineStarts and Ends when in outermost region

2011-04-10 Thread Johan Engelen
*** This bug is a duplicate of bug 733010 *** https://bugs.launchpad.net/bugs/733010 ** This bug has been marked a duplicate of bug 733010 Resize page to selection: 'InfinityLine' start/end markers not included * You can subscribe to bug 733010 by following this link: https://bugs.launchp