(munre_set_regex): Bugfix again.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -35,7 +35,7 @@ munre_set_regex (char *str, int caseflag, char **errp) | ... | @@ -35,7 +35,7 @@ munre_set_regex (char *str, int caseflag, char **errp) |
35 | int rc; | 35 | int rc; |
36 | int flags = REG_EXTENDED; | 36 | int flags = REG_EXTENDED; |
37 | 37 | ||
38 | if (!errp) | 38 | if (errp) |
39 | *errp = NULL; | 39 | *errp = NULL; |
40 | 40 | ||
41 | if (!str) | 41 | if (!str) | ... | ... |
-
Please register or sign in to post a comment