mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 22:05:40 +00:00
Bug 1083664 - Disable an assert in cubeb_audiounit.c for investigation.
--HG-- extra : rebase_source : d46b6fb9d3da9a45ea94435a15bfc3bfee85e9d3
This commit is contained in:
parent
16558048b6
commit
6a47f77739
@ -1,6 +1,6 @@
|
||||
[DEFAULT]
|
||||
# contentSandbox - bug 1042735, Android 2.3 - bug 981881, OSX debug - bug 1083664
|
||||
skip-if = (os == 'win' && contentSandbox != 'off') || android_version == '10' || (os == 'mac' && debug)
|
||||
# contentSandbox - bug 1042735, Android 2.3 - bug 981881
|
||||
skip-if = (os == 'win' && contentSandbox != 'off') || android_version == '10'
|
||||
support-files =
|
||||
head.js
|
||||
constraints.js
|
||||
|
@ -447,7 +447,8 @@ audiounit_destroy(cubeb * ctx)
|
||||
{
|
||||
int r;
|
||||
|
||||
assert(ctx->active_streams == 0);
|
||||
// Disabling this assert for bug 1083664 -- we seem to leak a stream
|
||||
// assert(ctx->active_streams == 0);
|
||||
|
||||
r = pthread_mutex_destroy(&ctx->mutex);
|
||||
assert(r == 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user