GNOME Bugzilla – Bug 350555
Script-Fu lava close GIMP
Last modified: 2008-01-15 14:08:01 UTC
While using Filter->Rendering->Lava, GIMP crashes during oil painting.
plug_in_params_to_args() is being called with pspecs=NULL and n_pspecs=0, which seems to be allowed according to the checks at the start of the function. The function doesn't correctly deal with this situation though, thus the crash:
+ Trace 70136
Fixed in CVS: 2006-08-09 Michael Natterer <mitch@gimp.org> * app/plug-in/plug-in-params.c (plug_in_params_to_args): it's a bad idea to access an array before checking if it's long enough. Fixes bug #350555. Also added some comments, the logic here is really weird.
Fixed the bug triggering the crash: 2006-08-10 Michael Natterer <mitch@gimp.org> * plug-ins/common/oilify.c (run): the plug-in has one return value, not two (the trigger of the crasher in bug #350555).
*** Bug 350226 has been marked as a duplicate of this bug. ***