X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oss_write.c;h=4e5f9b5626c2400f310647cf8805e141f98e983d;hp=20b05009d38b08c10b06b64ebf44777a9d5a803d;hb=3010ef96e10cb15d423eef8f9802fbed78744393;hpb=d8213149049056e0cabbcbe575a10dfb1a83583e diff --git a/oss_write.c b/oss_write.c index 20b05009..4e5f9b56 100644 --- a/oss_write.c +++ b/oss_write.c @@ -282,6 +282,11 @@ err_out: return NULL; } +static void oss_free_config(void *conf) +{ + oss_cmdline_parser_free(conf); +} + /** * The init function of the oss writer. * @@ -301,6 +306,7 @@ void oss_write_init(struct writer *w) w->post_select = oss_post_select; w->post_select_btr = oss_post_select_btr; w->parse_config = oss_parse_config; + w->free_config = oss_free_config; w->shutdown = NULL; w->help = (struct ggo_help) { .short_help = oss_write_args_info_help,