topology: various coverity fixes

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2019-05-24 20:52:00 +02:00
parent 6efa23f283
commit 0d97f53c25
3 changed files with 18 additions and 10 deletions

View file

@ -880,7 +880,7 @@ int tplg_add_enum(snd_tplg_t *tplg, struct snd_tplg_enum_template *enum_ctl,
if (enum_ctl->texts != NULL) {
for (i = 0; i < num_items; i++) {
if (enum_ctl->texts[i] != NULL)
strncpy(ec->texts[i], enum_ctl->texts[i],
snd_strlcpy(ec->texts[i], enum_ctl->texts[i],
SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
}
}

View file

@ -124,12 +124,12 @@ static int tplg_parse_data_file(snd_config_t *cfg, struct tplg_elem *elem)
if (fclose(fp) == EOF) {
SNDERR("Cannot close data file.");
ret = -errno;
goto err;
return -errno;
}
return 0;
err:
fclose(fp);
if (priv)
free(priv);
return ret;
@ -422,7 +422,7 @@ static unsigned int get_tuple_size(int type)
static int copy_tuples(struct tplg_elem *elem,
struct tplg_vendor_tuples *tuples, struct tplg_vendor_tokens *tokens)
{
struct snd_soc_tplg_private *priv = elem->data;
struct snd_soc_tplg_private *priv = elem->data, *priv2;
struct tplg_tuple_set *tuple_set;
struct tplg_tuple *tuple;
struct snd_soc_tplg_vendor_array *array;
@ -447,10 +447,17 @@ static int copy_tuples(struct tplg_elem *elem,
return -EINVAL;
}
if (priv != NULL)
priv = realloc(priv, sizeof(*priv) + size);
else
if (priv != NULL) {
priv2 = realloc(priv, sizeof(*priv) + size);
if (priv2 == NULL) {
free(priv);
priv = NULL;
} else {
priv = priv2;
}
} else {
priv = calloc(1, sizeof(*priv) + size);
}
if (!priv)
return -ENOMEM;

View file

@ -237,8 +237,9 @@ static int tplg_load_config(const char *file, snd_config_t **cfg)
ret = snd_input_stdio_attach(&in, fp, 1);
if (ret < 0) {
fclose(fp);
SNDERR("error: could not attach stdio %s", file);
goto err;
return ret;
}
ret = snd_config_top(&top);
if (ret < 0)
@ -261,7 +262,7 @@ static int tplg_load_config(const char *file, snd_config_t **cfg)
err_load:
snd_config_delete(top);
err:
fclose(fp);
snd_input_close(in);
return ret;
}