24 lines
819 B
Diff
24 lines
819 B
Diff
![]() |
From f9351d884bddaf126a8fc45c8cb14e7ca2cf463b 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 93177f15c8..692bcf162b 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;
|
||
|
}
|
||
|
|