Nullify pattern after failed regcomp

This commit is contained in:
alm 1993-08-16 09:30:18 +00:00
parent 882c5ab2bd
commit c05c784bea

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;
}