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

« back to all changes in this revision

Viewing changes to debian/patches/add-missing-limits-include.patch

  • 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:
1
 
From 5baf7df7f4c5971dab552897eeef94b194650ce5 Mon Sep 17 00:00:00 2001
2
 
From: Dave Tapuska <dtapuska@chromium.org>
3
 
Date: Mon, 12 Aug 2019 22:30:13 +0000
4
 
Subject: [PATCH] Fix build failure due to missing include for std::numeric_limits usage.
5
 
 
6
 
Some configurations fail to build, limits should have been included.
7
 
 
8
 
BUG=992832
9
 
 
10
 
Change-Id: I894ba0543bfcef101c93259e39a31d12ae6d035c
11
 
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1747981
12
 
Commit-Queue: Dave Tapuska <dtapuska@chromium.org>
13
 
Reviewed-by: Mostyn Bramley-Moore <mostynb@vewd.com>
14
 
Cr-Commit-Position: refs/heads/master@{#686214}
15
 
---
16
 
 
17
 
diff --git a/third_party/blink/renderer/platform/exported/web_time_range.cc b/third_party/blink/renderer/platform/exported/web_time_range.cc
18
 
index 384566a..68d83e1 100644
19
 
--- a/third_party/blink/renderer/platform/exported/web_time_range.cc
20
 
+++ b/third_party/blink/renderer/platform/exported/web_time_range.cc
21
 
@@ -31,6 +31,7 @@
22
 
 #include "third_party/blink/public/platform/web_time_range.h"
23
 
 
24
 
 #include <cmath>
25
 
+#include <limits>
26
 
 
27
 
 namespace blink {
28