From 690b19726fcbf19765962311461b7a6e17842b2b Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Fri, 20 Oct 2023 18:48:11 -0400 Subject: safe sprintf nullptrt --- .../files/chromium-120-safe_sprintf-nullptr-t.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 www-client/chromium/files/chromium-120-safe_sprintf-nullptr-t.patch (limited to 'www-client/chromium/files') diff --git a/www-client/chromium/files/chromium-120-safe_sprintf-nullptr-t.patch b/www-client/chromium/files/chromium-120-safe_sprintf-nullptr-t.patch new file mode 100644 index 0000000..b0cf884 --- /dev/null +++ b/www-client/chromium/files/chromium-120-safe_sprintf-nullptr-t.patch @@ -0,0 +1,13 @@ +diff --git a/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/strings/safe_sprintf.h b/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/strings/safe_sprintf.h +index 3644afae8b..386f86ac80 100644 +--- a/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/strings/safe_sprintf.h ++++ b/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/strings/safe_sprintf.h +@@ -184,7 +184,7 @@ struct Arg { + // + // Warning: don't just do Arg(NULL) here because in some libcs, NULL is an + // alias for nullptr! +- Arg(nullptr_t p) : type(INT) { ++ Arg(std::nullptr_t p) : type(INT) { + integer.i = 0; + // Internally, SafeSprintf expects to represent nulls as integers whose + // width is equal to sizeof(NULL), which is not necessarily equal to -- cgit v1.2.3