There was still one leak left: argv[0] gets strdupped, but never freed.
of audio data not being written under certain circumstances
- audiod: compute the difference of server time and local time
correctly
+ - para_server/para_audiod: Fix some memory leaks
- documentation improvements
- configure.ac: fix checks for para_krell
- new man pages
argv[0] = para_strdup(f->name);
argc += 1;
*conf = f->parse_config(argc, argv);
+ free(argv[0]);
free(argv);
return *conf? filter_num : -E_BAD_FILTER_OPTIONS;
}
argv[1] = NULL;
}
conf = r->parse_config(argc, argv);
+ free(argv[0]);
free(argv);
return conf;
}