Comment 7 for bug 1204732

Revision history for this message
su_v (suv-lp) wrote : [Bug 1204732] Re: inkscape crashed with SIGABRT in __gnu_cxx::__verbose_terminate_handler()

AFAICT the trigger on Inkscape's side is an empty 'description' parameter (see attached demos):
   <param name="empty_desc_1" type="description" xml:space="preserve"></param>
or:
   <param name="empty_desc_1" type="description" xml:space="preserve"> </param>
or:
   <param name="empty_desc_1" type="description" xml:space="preserve">
</param>

This one with minimal content works:
   <param name="empty_desc_1" type="description" xml:space="preserve">.</param>

The parameter element in the Egg-Bot extension which triggers the crash:
<http://code.google.com/p/eggbotcode/source/browse/trunk/inkscape_driver/eggbot.inx?r=220#32>