mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
use volatile pointers for intentional-crash code.
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user