mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
modules: fix some leaks in error paths
As found by coverity
This commit is contained in:
parent
5bed3f1ff3
commit
c50c8d2be9
3 changed files with 21 additions and 19 deletions
|
|
@ -88,9 +88,14 @@ static int module_ladspa_sink_load(struct client *client, struct module *module)
|
|||
struct module_ladspa_sink_data *data = module->user_data;
|
||||
FILE *f;
|
||||
char *args;
|
||||
const char *str;
|
||||
const char *str, *plugin, *label;
|
||||
size_t size;
|
||||
|
||||
if ((plugin = pw_properties_get(module->props, "plugin")) == NULL)
|
||||
return -EINVAL;
|
||||
if ((label = pw_properties_get(module->props, "label")) == NULL)
|
||||
return -EINVAL;
|
||||
|
||||
pw_properties_setf(data->capture_props, PW_KEY_NODE_GROUP, "ladspa-sink-%u", module->idx);
|
||||
pw_properties_setf(data->playback_props, PW_KEY_NODE_GROUP, "ladspa-sink-%u", module->idx);
|
||||
|
||||
|
|
@ -100,12 +105,8 @@ static int module_ladspa_sink_load(struct client *client, struct module *module)
|
|||
fprintf(f, " filter.graph = {");
|
||||
fprintf(f, " nodes = [ { ");
|
||||
fprintf(f, " type = ladspa ");
|
||||
if ((str = pw_properties_get(module->props, "plugin")) == NULL)
|
||||
return -EINVAL;
|
||||
fprintf(f, " plugin = \"%s\" ", str);
|
||||
if ((str = pw_properties_get(module->props, "label")) == NULL)
|
||||
return -EINVAL;
|
||||
fprintf(f, " label = \"%s\" ", str);
|
||||
fprintf(f, " plugin = \"%s\" ", plugin);
|
||||
fprintf(f, " label = \"%s\" ", label);
|
||||
if ((str = pw_properties_get(module->props, "inputs")) != NULL)
|
||||
fprintf(f, " inputs = [ %s ] ", str);
|
||||
if ((str = pw_properties_get(module->props, "outputs")) != NULL)
|
||||
|
|
|
|||
|
|
@ -88,9 +88,14 @@ static int module_ladspa_source_load(struct client *client, struct module *modul
|
|||
struct module_ladspa_source_data *data = module->user_data;
|
||||
FILE *f;
|
||||
char *args;
|
||||
const char *str;
|
||||
const char *str, *plugin, *label;
|
||||
size_t size;
|
||||
|
||||
if ((plugin = pw_properties_get(module->props, "plugin")) == NULL)
|
||||
return -EINVAL;
|
||||
if ((label = pw_properties_get(module->props, "label")) == NULL)
|
||||
return -EINVAL;
|
||||
|
||||
pw_properties_setf(data->capture_props, PW_KEY_NODE_GROUP, "ladspa-source-%u", module->idx);
|
||||
pw_properties_setf(data->playback_props, PW_KEY_NODE_GROUP, "ladspa-source-%u", module->idx);
|
||||
|
||||
|
|
@ -100,12 +105,8 @@ static int module_ladspa_source_load(struct client *client, struct module *modul
|
|||
fprintf(f, " filter.graph = {");
|
||||
fprintf(f, " nodes = [ { ");
|
||||
fprintf(f, " type = ladspa ");
|
||||
if ((str = pw_properties_get(module->props, "plugin")) == NULL)
|
||||
return -EINVAL;
|
||||
fprintf(f, " plugin = \"%s\" ", str);
|
||||
if ((str = pw_properties_get(module->props, "label")) == NULL)
|
||||
return -EINVAL;
|
||||
fprintf(f, " label = \"%s\" ", str);
|
||||
fprintf(f, " plugin = \"%s\" ", plugin);
|
||||
fprintf(f, " label = \"%s\" ", label);
|
||||
if ((str = pw_properties_get(module->props, "inputs")) != NULL)
|
||||
fprintf(f, " inputs = [ %s ] ", str);
|
||||
if ((str = pw_properties_get(module->props, "outputs")) != NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue