cwAudioDeviceAlsa.cpp : Added calls to snd_config_update_free_global() to prevent memory leaks from showing up in valgrind.
This commit is contained in:
parent
29945bd3b4
commit
577e61ca82
@ -320,6 +320,7 @@ namespace cw
|
|||||||
|
|
||||||
if((err = snd_pcm_close(pcmH)) < 0)
|
if((err = snd_pcm_close(pcmH)) < 0)
|
||||||
_alsaSetupError(err,inputFl,drp,"Error closing PCM handle");
|
_alsaSetupError(err,inputFl,drp,"Error closing PCM handle");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -411,6 +412,9 @@ namespace cw
|
|||||||
p->devAllocCnt = 0;
|
p->devAllocCnt = 0;
|
||||||
p->devCnt = 0;
|
p->devCnt = 0;
|
||||||
|
|
||||||
|
//https://stackoverflow.com/questions/13478861/alsa-mem-leak
|
||||||
|
snd_config_update_free_global();
|
||||||
|
|
||||||
mem::release(p);
|
mem::release(p);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
@ -971,7 +975,6 @@ namespace cw
|
|||||||
rc = _alsaSetupError(err,inputFl,drp,"Unable to open the PCM handle");
|
rc = _alsaSetupError(err,inputFl,drp,"Unable to open the PCM handle");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
snd_pcm_hw_params_t* hwParams;
|
snd_pcm_hw_params_t* hwParams;
|
||||||
snd_pcm_sw_params_t* swParams;
|
snd_pcm_sw_params_t* swParams;
|
||||||
|
|
||||||
@ -1602,6 +1605,7 @@ cw::rc_t cw::audio::device::alsa::report( handle_t h )
|
|||||||
_devReport(p->devArray + i );
|
_devReport(p->devArray + i );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//https://stackoverflow.com/questions/13478861/alsa-mem-leak
|
||||||
snd_config_update_free_global();
|
snd_config_update_free_global();
|
||||||
|
|
||||||
return kOkRC;
|
return kOkRC;
|
||||||
|
Loading…
Reference in New Issue
Block a user