From 71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Jun 2011 18:10:43 -0400 Subject: use volatile pointers for intentional-crash code. --- src/time/__asctime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/time/__asctime.c') diff --git a/src/time/__asctime.c b/src/time/__asctime.c index 18535802..d31f6347 100644 --- a/src/time/__asctime.c +++ b/src/time/__asctime.c @@ -21,7 +21,7 @@ char *__asctime(const struct tm *tm, char *buf) * application developers that they may not be so lucky * on other implementations (e.g. stack smashing..). */ - *(int*)0 = 0; + *(volatile int*)0 = 0; } return buf; } -- cgit v1.2.1