summaryrefslogtreecommitdiff
path: root/tests/valid2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/valid2.c')
-rw-r--r--tests/valid2.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/valid2.c b/tests/valid2.c
index 84b94a4..ad01b55 100644
--- a/tests/valid2.c
+++ b/tests/valid2.c
@@ -72,20 +72,19 @@
*/
#include "test.h"
-
int
main()
{
- pthread_t t;
-
- assert(sizeof(t) > (4 * sizeof(void *)));
+ pthread_t ptrToNull = NULL;
+ /* This should be bigger than a pthread handle. */
+ char corruptDummy[1000];
- t = (pthread_t) malloc(sizeof(t));
+ memset(corruptDummy, 0x5A, sizeof(corruptDummy));
- assert(t != NULL);
- memset(t, 0x5A, sizeof(t));
- assert(pthread_kill(t, 0) == ESRCH);
+ assert(pthread_kill(NULL, 0) == ESRCH);
+ assert(pthread_kill(ptrToNull, 0) == ESRCH);
+ assert(pthread_kill((pthread_t) corruptDummy, 0) == ESRCH);
return 0;
}