This doesnt save you from buffer underflows :
void giant_bug(char *b)
{
char buf[256], *p=buf+256;
int x;
for (x=0;x<1024;++x) *p-- = *b++;
}
expand-up stacks are not secure either.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.altern.org/andrebalsa/doc/lkml-faq.html