aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/unittests/dump_analysis.cc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2023-08-10 12:49:36 -0700
committerElliott Hughes <enh@google.com>2023-08-10 13:49:49 -0700
commit332a4371eda197cfcbcd01bf197482aecde23a1a (patch)
treef98d11d6a158167e19fc9141c79d877280a616a6 /src/client/windows/unittests/dump_analysis.cc
parente41ddc00ce1a4d6781121347efc507b6916e00ea (diff)
parentbae713be2e51faa5cbe0ac4bcd21c0a3ee72ff8e (diff)
downloadgoogle-breakpad-332a4371eda197cfcbcd01bf197482aecde23a1a.tar.gz
Upgrade google-breakpad to v2023.01.27
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update google-breakpad For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md enh@ also reverted various bits of local vandalism, so that the source matches what's actually upstream at this tag exactly. Bug: http://b/295251968 Test: TreeHugger Change-Id: I594a518c720e1d86c46ac18313e8ba90dffd91ad
Diffstat (limited to 'src/client/windows/unittests/dump_analysis.cc')
-rw-r--r--src/client/windows/unittests/dump_analysis.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/client/windows/unittests/dump_analysis.cc b/src/client/windows/unittests/dump_analysis.cc
index 53d4ddbd..24a33769 100644
--- a/src/client/windows/unittests/dump_analysis.cc
+++ b/src/client/windows/unittests/dump_analysis.cc
@@ -1,5 +1,4 @@
-// Copyright (c) 2010, Google Inc.
-// All rights reserved.
+// Copyright 2010 Google LLC
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
@@ -11,7 +10,7 @@
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
-// * Neither the name of Google Inc. nor the names of its
+// * Neither the name of Google LLC nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
@@ -127,8 +126,8 @@ size_t DumpAnalysis::GetStreamImpl(ULONG stream_number, void** stream) const {
return ret ? memory_list_size : 0;
}
-bool DumpAnalysis::HasMemoryImpl(const void *addr_in, size_t structuresize,
- void **structure) const {
+bool DumpAnalysis::HasMemoryImpl(const void* addr_in, size_t structuresize,
+ void** structure) const {
uintptr_t address = reinterpret_cast<uintptr_t>(addr_in);
MINIDUMP_MEMORY_LIST* memory_list = NULL;
size_t memory_list_size = GetStream(MemoryListStream, &memory_list);