From: notaz Date: Mon, 2 Feb 2015 23:27:18 +0000 (+0200) Subject: alsa: don't leak memory X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=libpicofe.git;a=commitdiff_plain;h=9b87077e93e8ede8ebd18e465d40c310baba8bbb;hp=515ac0b9d2c4d45a465335d54b8c49830914fcea alsa: don't leak memory --- diff --git a/linux/sndout_alsa.c b/linux/sndout_alsa.c index 95cc391..f1d9ca3 100644 --- a/linux/sndout_alsa.c +++ b/linux/sndout_alsa.c @@ -72,9 +72,7 @@ int sndout_alsa_start(int rate_, int stereo) snd_pcm_hw_params_get_period_size(hwparams, &period_size, NULL); snd_pcm_hw_params_get_channels(hwparams, &channels); - silent_period = realloc(silent_period, period_size * 2 * channels); - if (silent_period != NULL) - memset(silent_period, 0, period_size * 2 * channels); + silent_period = calloc(period_size * channels, 2); ret = snd_pcm_prepare(handle); if (ret != 0) { @@ -104,6 +102,9 @@ void sndout_alsa_stop(void) int ret = snd_pcm_drop(handle); if (ret != 0) fprintf(stderr, PFX "snd_pcm_drop failed: %d\n", ret); + + free(silent_period); + silent_period = NULL; } void sndout_alsa_wait(void)