K 10 svn:author V 6 cognet K 8 svn:date V 27 2009-04-28T19:20:13.433726Z K 7 svn:log V 297 Change the test at the beginning of strncmp(), from being if (len - 1) < 0 to if (len == 0). The length is supposed to be unsigned, so len - 1 < 0 won't happen except if len == 0 anyway, and it would return 0 when it shouldn't, if len was > INT_MAX. Spotted out by: Channa END