diff options
Diffstat (limited to 'gst/goom/flying_stars_fx.c')
-rw-r--r-- | gst/goom/flying_stars_fx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/goom/flying_stars_fx.c b/gst/goom/flying_stars_fx.c index 384b54aa..9906c053 100644 --- a/gst/goom/flying_stars_fx.c +++ b/gst/goom/flying_stars_fx.c @@ -136,6 +136,11 @@ fs_init (VisualFX * _this, PluginInfo * info) static void fs_free (VisualFX * _this) { + FSData *data = (FSData *) _this->fx_data; + + goom_plugin_parameters_free (&data->params); + + free (data->stars); free (_this->fx_data); } |