Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/audio/codec_adapter/codec/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ int codec_free_memory(struct comp_dev *dev, void *ptr)
struct list_item *mem_list;
struct list_item *_mem_list;

if (!ptr) {
if (!ptr)
return 0;
}

/* Find which container keeps this memory */
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E ok. Poti face un PUll request catre proiectul SOF.

list_for_item_safe(mem_list, _mem_list, &cd->codec.memory.mem_list) {
mem = container_of(mem_list, struct codec_memory, mem_list);
Expand Down