~chromium-team/chromium-browser/disco-stable

« back to all changes in this revision

Viewing changes to debian/patches/disable-sse2

  • Committer: Olivier Tilloy
  • Date: 2019-10-23 14:02:26 UTC
  • mfrom: (1349.1.164 disco-beta)
  • Revision ID: olivier.tilloy@canonical.com-20191023140226-kn0ebzzt439qkvlb
* Upstream release: 78.0.3904.70
  - CVE-2019-13699: Use-after-free in media.
  - CVE-2019-13700: Buffer overrun in Blink.
  - CVE-2019-13701: URL spoof in navigation.
  - CVE-2019-13702: Privilege elevation in Installer.
  - CVE-2019-13703: URL bar spoofing.
  - CVE-2019-13704: CSP bypass.
  - CVE-2019-13705: Extension permission bypass.
  - CVE-2019-13706: Out-of-bounds read in PDFium.
  - CVE-2019-13707: File storage disclosure.
  - CVE-2019-13708: HTTP authentication spoof.
  - CVE-2019-13709: File download protection bypass.
  - CVE-2019-13710: File download protection bypass.
  - CVE-2019-13711: Cross-context information leak.
  - CVE-2019-15903: Buffer overflow in expat.
  - CVE-2019-13713: Cross-origin data leak.
  - CVE-2019-13714: CSS injection.
  - CVE-2019-13715: Address bar spoofing.
  - CVE-2019-13716: Service worker state error.
  - CVE-2019-13717: Notification obscured.
  - CVE-2019-13718: IDN spoof.
  - CVE-2019-13719: Notification obscured.
* debian/patches/add-missing-limits-include.patch: removed, no longer needed
* debian/patches/add-missing-memory-include.patch: removed, no longer needed
* debian/patches/configuration-directory.patch: refreshed
* debian/patches/default-allocator: refreshed
* debian/patches/define__libc_malloc.patch: refreshed
* debian/patches/disable-sse2: refreshed
* debian/patches/enable-chromecast-by-default.patch: refreshed
* debian/patches/fix-extra-arflags.patch: refreshed
* debian/patches/search-credit.patch: refreshed
* debian/patches/set-rpath-on-chromium-executables.patch: refreshed
* debian/patches/suppress-newer-clang-warning-flags.patch: added
* debian/patches/title-bar-default-system.patch-v35: refreshed
* debian/patches/touch-v35: refreshed
* debian/patches/widevine-enable-version-string.patch: refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
 #include <emmintrin.h>
159
159
 #endif
160
160
 
161
 
@@ -277,7 +277,7 @@ void SincResampler::Process(AudioSourceP
 
161
@@ -273,7 +273,7 @@ void SincResampler::Process(AudioSourceP
162
162
       {
163
163
         float input;
164
164
 
282
282
 #include <emmintrin.h>
283
283
 #endif
284
284
 
285
 
@@ -1417,7 +1417,7 @@ std::tuple<size_t, float, unsigned> Audi
 
285
@@ -1406,7 +1406,7 @@ std::tuple<size_t, float, unsigned> Audi
286
286
     size_t current_frame,
287
287
     float value,
288
288
     unsigned write_index) {
291
291
   auto number_of_values = current_state.number_of_values;
292
292
 #endif
293
293
   auto fill_to_frame = current_state.fill_to_frame;
294
 
@@ -1435,7 +1435,7 @@ std::tuple<size_t, float, unsigned> Audi
 
294
@@ -1424,7 +1424,7 @@ std::tuple<size_t, float, unsigned> Audi
295
295
   float k =
296
296
       delta_time <= std::numeric_limits<float>::min() ? 0 : 1 / delta_time;
297
297
   const float value_delta = value2 - value1;
300
300
   if (fill_to_frame > write_index) {
301
301
     // Minimize in-loop operations. Calculate starting value and increment.
302
302
     // Next step: value += inc.
303
 
@@ -1563,7 +1563,7 @@ std::tuple<size_t, float, unsigned> Audi
 
303
@@ -1552,7 +1552,7 @@ std::tuple<size_t, float, unsigned> Audi
304
304
     size_t current_frame,
305
305
     float value,
306
306
     unsigned write_index) {
309
309
   auto number_of_values = current_state.number_of_values;
310
310
 #endif
311
311
   auto fill_to_frame = current_state.fill_to_frame;
312
 
@@ -1614,7 +1614,7 @@ std::tuple<size_t, float, unsigned> Audi
 
312
@@ -1604,7 +1604,7 @@ std::tuple<size_t, float, unsigned> Audi
313
313
     for (; write_index < fill_to_frame; ++write_index)
314
314
       values[write_index] = target;
315
315
   } else {
318
318
     if (fill_to_frame > write_index) {
319
319
       // Resolve recursion by expanding constants to achieve a 4-step
320
320
       // loop unrolling.
321
 
@@ -1748,7 +1748,7 @@ std::tuple<size_t, float, unsigned> Audi
 
321
@@ -1738,7 +1738,7 @@ std::tuple<size_t, float, unsigned> Audi
322
322
   // Oversampled curve data can be provided if sharp discontinuities are
323
323
   // desired.
324
324
   unsigned k = 0;