Skip to content

Commit

Permalink
tools: plugin: tplg: Free tplg_base
Browse files Browse the repository at this point in the history
Free the memory allocated for tplg_base during topology free.

Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
  • Loading branch information
ranj063 committed Apr 17, 2024
1 parent 13ddd84 commit 16961e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/plugin/alsaplug/tplg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,7 @@ int plug_free_pipelines(snd_sof_plug_t *plug, struct tplg_pipeline_list *pipelin

void plug_free_topology(snd_sof_plug_t *plug)
{
struct tplg_context *ctx = &plug->tplg;
struct list_item *item, *_item;

list_for_item_safe(item, _item, &plug->pcm_list) {
Expand All @@ -1458,10 +1459,8 @@ void plug_free_topology(snd_sof_plug_t *plug)
struct tplg_comp_info *comp_info = container_of(item, struct tplg_comp_info, item);
struct sof_ipc4_available_audio_format *available_fmts = &comp_info->available_fmt;

if (available_fmts->output_pin_fmts)
free(available_fmts->output_pin_fmts);
if (available_fmts->input_pin_fmts)
free(available_fmts->input_pin_fmts);
free(available_fmts->output_pin_fmts);
free(available_fmts->input_pin_fmts);
free(comp_info->name);
free(comp_info->stream_name);
free(comp_info->ipc_payload);
Expand All @@ -1483,5 +1482,6 @@ void plug_free_topology(snd_sof_plug_t *plug)
free(pipe_info);
}

free(ctx->tplg_base);
tplg_debug("freed all pipelines, widgets, routes and pcms\n");
}

0 comments on commit 16961e8

Please sign in to comment.