summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThurston Dang <thurston.dang@gmail.com>2024-02-23 09:53:55 -0800
committerGitHub <noreply@github.com>2024-02-23 09:53:55 -0800
commit0673fb6e773b0a37802208be4f666cef1f6b3470 (patch)
tree84cf54ba3b9c541840675dc6d760f99297f3ef1a
parentdfa1d9b027e677cf1379dffee0059261a34f3481 (diff)
[hwasan] Add missing printf parameter in __hwasan_handle_longjmp (#82559)
The diagnostic message had four format specifiers but only three parameters. This patch adds what I assume to be the missing parameter.
-rw-r--r--compiler-rt/lib/hwasan/hwasan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/hwasan/hwasan.cpp b/compiler-rt/lib/hwasan/hwasan.cpp
index 52780becbdb2..ccdc0b4bc21b 100644
--- a/compiler-rt/lib/hwasan/hwasan.cpp
+++ b/compiler-rt/lib/hwasan/hwasan.cpp
@@ -692,7 +692,7 @@ void __hwasan_handle_longjmp(const void *sp_dst) {
"WARNING: HWASan is ignoring requested __hwasan_handle_longjmp: "
"stack top: %p; target %p; distance: %p (%zd)\n"
"False positive error reports may follow\n",
- (void *)sp, (void *)dst, dst - sp);
+ (void *)sp, (void *)dst, dst - sp, dst - sp);
return;
}
TagMemory(sp, dst - sp, 0);