diff options
author | Mark Whitley <markw@lineo.com> | 2000-07-12 23:35:21 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-07-12 23:35:21 +0000 |
commit | c41e8c840fd6faf802628036c7e5b2683d623c5d (patch) | |
tree | c4a47f2e1f1af68d3019f598bada0268f872c1b9 /utility.c | |
parent | 6f96e674b9176cafcc25de2a1d79d6f6d7f0e908 (diff) |
Changed bb_regcomp to xregcomp and #if 0'ed out destroy_cmd_strs in sed.c
(maybe I'll remove it later).
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1722,18 +1722,15 @@ char *get_last_path_component(char *path) #endif #if defined BB_GREP || defined BB_SED -int bb_regcomp(regex_t *preg, const char *regex, int cflags) +void xregcomp(regex_t *preg, const char *regex, int cflags) { int ret; if ((ret = regcomp(preg, regex, cflags)) != 0) { int errmsgsz = regerror(ret, preg, NULL, 0); char *errmsg = xmalloc(errmsgsz); regerror(ret, preg, errmsg, errmsgsz); - errorMsg("bb_regcomp: %s\n", errmsg); - free(errmsg); - regfree(preg); + fatalError("bb_regcomp: %s\n", errmsg); } - return ret; } #endif |