fix misaligned read on early string termination in strchr
authorRich Felker <dalias@aerifal.cx>
Tue, 5 Apr 2011 13:27:41 +0000 (09:27 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 5 Apr 2011 13:27:41 +0000 (09:27 -0400)
commit16675df793e896174230bdb6f99865c526830d3c
treeeb596dfb72e7ce283d2e186888a6b0c628d2585c
parent2f3d02cd83a46244c3f5a6fec851d7eded1376f4
fix misaligned read on early string termination in strchr

this could actually cause rare crashes in the case where a short
string is located at the end of a page and the following page is not
readable, and in fact this was seen in gcc compiling certain files.
src/string/strchr.c