summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@qt.io>2023-02-21 13:58:26 +0100
committerMichael BrĂ¼ning <michael.bruning@qt.io>2023-02-21 13:09:50 +0000
commit7338fd6c9f9293c290101be457fb0c59cc36408e (patch)
tree354e025260093e3bcf9d8751ab8af86feb9720af
parent3b388ec27a82ce5e8809caead4ac6fe0c43988e5 (diff)
downloadqtwebengine-chromium-7338fd6c9f9293c290101be457fb0c59cc36408e.tar.gz
Fixup for [Backport] CVE-2023-0705: Integer overflow in Core (2/2)
It was missing an include. Change-Id: If33119a15942ad58bed3fdf03ab97031e641454a Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/461649 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--chromium/base/memory/ref_counted.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/chromium/base/memory/ref_counted.h b/chromium/base/memory/ref_counted.h
index 9ef94d84769..f70e30748a3 100644
--- a/chromium/base/memory/ref_counted.h
+++ b/chromium/base/memory/ref_counted.h
@@ -7,6 +7,7 @@
#include <stddef.h>
+#include <limits>
#include <utility>
#include "base/atomic_ref_count.h"