alsa: Free the global config cache to remove a lot of reported leaks

Signed-off-by: Lauri Kasanen <curaga@operamail.com>
This commit is contained in:
Lauri Kasanen
2012-09-02 17:04:56 +03:00
committed by Chris Robinson
parent 78dac1bf4a
commit a6f9ede849
+6
View File
@@ -106,6 +106,7 @@ MAKE_FUNC(snd_ctl_card_info);
MAKE_FUNC(snd_ctl_card_info_get_name);
MAKE_FUNC(snd_ctl_card_info_get_id);
MAKE_FUNC(snd_card_next);
MAKE_FUNC(snd_config_update_free_global);
#undef MAKE_FUNC
#define snd_strerror psnd_strerror
@@ -179,6 +180,7 @@ MAKE_FUNC(snd_card_next);
#define snd_ctl_card_info_get_name psnd_ctl_card_info_get_name
#define snd_ctl_card_info_get_id psnd_ctl_card_info_get_id
#define snd_card_next psnd_card_next
#define snd_config_update_free_global psnd_config_update_free_global
#endif
@@ -270,6 +272,7 @@ static ALCboolean alsa_load(void)
LOAD_FUNC(snd_ctl_card_info_get_name);
LOAD_FUNC(snd_ctl_card_info_get_id);
LOAD_FUNC(snd_card_next);
LOAD_FUNC(snd_config_update_free_global);
#undef LOAD_FUNC
}
#endif
@@ -669,6 +672,9 @@ static ALCenum alsa_open_playback(ALCdevice *device, const ALCchar *deviceName)
return ALC_OUT_OF_MEMORY;
}
// Free alsa's global config tree. Otherwise valgrind reports a ton of leaks.
snd_config_update_free_global();
device->DeviceName = strdup(deviceName);
device->ExtraData = data;
return ALC_NO_ERROR;