Closed
Bug 499612
Opened 16 years ago
Closed 15 years ago
Memory leak in libsydneyaudio when playing audio using audio/video elements
Categories
(Core :: Audio/Video, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 506061
People
(Reporter: cajbir, Unassigned)
Details
See Annodex trac ticket 487:
https://trac.annodex.net/ticket/487
libsydneyaudio's alsa backend allocates memory for the handle in sa_stream_create_pcm:
/*
* Allocate the instance and required resources. */
if ((s = malloc(sizeof(sa_stream_t))) == NULL) {
return SA_ERROR_OOM;
}
It does not free this anywhere.
Comment 1•15 years ago
|
||
Fixed in the ALSA patch from bug 506061.
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•