diff options
Diffstat (limited to 'src/audio_out/audio_file_out.c')
-rw-r--r-- | src/audio_out/audio_file_out.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/audio_out/audio_file_out.c b/src/audio_out/audio_file_out.c index 6e85e5754..c2382cf21 100644 --- a/src/audio_out/audio_file_out.c +++ b/src/audio_out/audio_file_out.c @@ -353,14 +353,6 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, /* * class functions */ - -static void dispose_class (audio_driver_class_t *this_gen) { - - file_class_t *this = (file_class_t *) this_gen; - - free (this); -} - static void *init_class (xine_t *xine, void *data) { file_class_t *this; @@ -374,7 +366,7 @@ static void *init_class (xine_t *xine, void *data) { this->driver_class.open_plugin = open_plugin; this->driver_class.identifier = "file"; this->driver_class.description = N_("xine file audio output plugin"); - this->driver_class.dispose = dispose_class; + this->driver_class.dispose = default_audio_driver_class_dispose; this->config = xine->config; this->xine = xine; |