extensions don't have parameters,
but helper_run() was asking anyway -
and segfaulting. Commented out
line for now; everything still seems
prototypical in Plug In Helper Land
This commit is contained in:
Garry R. Osgood
2001-04-30 01:09:35 +00:00
parent 28a3536686
commit a14b5874b9
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2001-04-29 Garry R. Osgood <grosgood@rcn.com>
* plug-ins/plugin-helper/plugin-helper.c
extensions don't have parameters,
but helper_run() was asking anyway -
and segfaulting. Commented out
line for now; everything still seems
prototypical in Plug In Helper Land.
2001-04-29 Michael Natterer <mitch@gimp.org>
* app/gimplayer.[ch]: added a "linked_changed" signal and emit it

View File

@ -83,7 +83,11 @@ helper_run (gchar * name,
g_message ("run called %s", name);
run_mode = param[0].data.d_int32;
/* No parameters have been defined: asking for one */
/* seg-faults, since param[0] == NULL */
/* See helper_query -garo- */
/* run_mode = param[0].data.d_int32; */
*nreturn_vals = 1;
*return_vals = values;