1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-06 07:01:45 +00:00

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

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);
}