Nullify pattern after failed regcomp

This commit is contained in:
Andrew Moore 1993-08-16 09:30:18 +00:00
parent 8bb722a390
commit 9c5df0ae70
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=293

View file

@ -86,7 +86,8 @@ optpat()
patlock = 0;
if (n = regcomp(exp, exps, 0)) {
regerror(n, exp, errmsg, sizeof errmsg);
return NULL;
free(exp);
return exp = NULL;
}
return exp;
}