diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-06 18:10:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-06 18:10:43 -0400 |
commit | 71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe (patch) | |
tree | 5234adea31714c54849ecfad2c223c6b5d1ee510 /src/time | |
parent | da88b16a221c9d327e1bfa61dd6f4f08dacce57a (diff) | |
download | musl-71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe.tar.gz musl-71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe.tar.bz2 musl-71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe.tar.xz musl-71a80c5767aa4e6b7cbc2b58feef3cfca76e29fe.zip |
use volatile pointers for intentional-crash code.
Diffstat (limited to 'src/time')
-rw-r--r-- | src/time/__asctime.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |