CVSROOT: /cvs Module name: src Changes by: r...@cvs.openbsd.org 2015/08/18 02:26:39
Modified files: usr.sbin/httpd : patterns.c Log message: str_match() checked the return value of str_find_aux() incorrectly: it might return a negative number; the return value of match_error() which returns (-1). This was technically a bug, and it exists in 5.8, but there is no impact because the error is correctly catched with the returned non-NULL error string. Found by Leandro Pereira