Coverity catches X Window Security Hole
Posted May 3, 2006 0:48 UTC (Wed) by
bk (guest, #25617)
Parent article:
Coverity catches X Window Security Hole
You don't really need Coverity to find bugs like this. It's not like there was a missing parentheses in some horrible deeply nested expression, here was the problem:
This:
if (getuid() == 0 || geteuid != 0)
Should have been this:
if (getuid() == 0 || geteuid() != 0)
Simple enough for human beings to detect and fix.
(
Log in to post comments)