Bug 1083664 - Disable an assert in cubeb_audiounit.c for investigation.

--HG--
extra : rebase_source : d46b6fb9d3da9a45ea94435a15bfc3bfee85e9d3
This commit is contained in:
Paul Adenot 2014-11-12 20:05:05 +01:00
parent 16558048b6
commit 6a47f77739
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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);