mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
1df7c7f1d4
Signed-off-by: Tad <tad@spotco.us>
24 lines
817 B
Diff
24 lines
817 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Fri, 29 Jan 2016 20:20:09 -0500
|
|
Subject: [PATCH] use a better pthread_attr junk filling pattern
|
|
|
|
Guarantee that junk filled pointers will fault, at least on pure 64-bit.
|
|
---
|
|
libc/bionic/pthread_attr.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libc/bionic/pthread_attr.cpp b/libc/bionic/pthread_attr.cpp
|
|
index 3c4b169ee..a27201706 100644
|
|
--- a/libc/bionic/pthread_attr.cpp
|
|
+++ b/libc/bionic/pthread_attr.cpp
|
|
@@ -53,7 +53,7 @@ int pthread_attr_init(pthread_attr_t* attr) {
|
|
|
|
__BIONIC_WEAK_FOR_NATIVE_BRIDGE
|
|
int pthread_attr_destroy(pthread_attr_t* attr) {
|
|
- memset(attr, 0x42, sizeof(pthread_attr_t));
|
|
+ memset(attr, 0xdf, sizeof(pthread_attr_t));
|
|
return 0;
|
|
}
|
|
|