taint.c-orig.html from CQual at Krugle
Show taint.c-orig.html syntax highlighted
<html>
<body bgcolor="white">
<pre>
char *getenv(const char *name);
int printf(const char *fmt, ...);
int main(void)
{
char *s, *t;
s = getenv("LD_LIBRARY_PATH");
t = s;
printf(t);
}
</pre>
</body>
</html>
See more files for this project here