forked from pool/MozillaFirefox
2f1f7dea2a
* Snippets are not loaded due to missing element (bmo#1503047) * Print preview always shows 30& scale when it is actually Shrink To Fit (bmo#1501952) * Dialog displayed when closing multiple windows shows unreplaced %1$S placeholder in Japanese and potentially other locales (bmo#1500823) MFSA 2018-26 (bsc#1112852) * CVE-2018-12391 (bmo#1478843) (Android-only) HTTP Live Stream audio data is accessible cross-origin * CVE-2018-12392 (bmo#1492823) Crash with nested event loops * CVE-2018-12393 (bmo#1495011) (only affects non-64-bit archs) Integer overflow during Unicode conversion while loading JavaScript * CVE-2018-12395 (bmo#1467523) WebExtension bypass of domain restrictions through header rewriting * CVE-2018-12396 (bmo#1483602) WebExtension content scripts can execute in disallowed contexts * CVE-2018-12397 (bmo#1487478) Missing warning prompt when WebExtension requests local file access * CVE-2018-12398 (bmo#1460538, bmo#1488061) CSP bypass through stylesheet injection in resource URIs * CVE-2018-12399 (bmo#1490276) Spoofing of protocol registration notification bar * CVE-2018-12400 (bmo#1448305) (Android only) Favicons are cached in private browsing mode on Firefox for Android * CVE-2018-12401 (bmo#1422456) DOS attack through special resource URI parsing * CVE-2018-12402 (bmo#1469916) SameSite cookies leak when pages are explicitly saved OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=692
19 lines
592 B
Diff
19 lines
592 B
Diff
# HG changeset patch
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
# Parent a9d61a2614b01b1e0ca37d00a6b11b2571868f86
|
|
|
|
diff --git a/media/libcubeb/src/cubeb_utils.cpp b/media/libcubeb/src/cubeb_utils.cpp
|
|
--- a/media/libcubeb/src/cubeb_utils.cpp
|
|
+++ b/media/libcubeb/src/cubeb_utils.cpp
|
|
@@ -15,9 +15,10 @@ size_t cubeb_sample_size(cubeb_sample_fo
|
|
return sizeof(int16_t);
|
|
case CUBEB_SAMPLE_FLOAT32LE:
|
|
case CUBEB_SAMPLE_FLOAT32BE:
|
|
return sizeof(float);
|
|
default:
|
|
// should never happen as all cases are handled above.
|
|
assert(false);
|
|
}
|
|
+ return 0;
|
|
}
|