ao_coreaudio: fix another minor memory leak

How stupid, even the cleanup gotos were already there.
This commit is contained in:
wm4 2015-10-26 15:54:36 +01:00
parent f3a003e550
commit 9ed289ef90
1 changed files with 2 additions and 1 deletions

View File

@ -289,5 +289,6 @@ void ca_get_active_chmap(struct ao *ao, AudioDeviceID device, int channel_count,
}
out_map->num = 0;
done: ;
done:
talloc_free(ta_ctx);
}