diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-16 13:16:01 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-16 13:16:01 +0000 |
commit | 8d3c40d492a13131d14aa8d79787e0fa98f6be85 (patch) | |
tree | d9acab479d786e2c8e00445ff73565988494d1c5 /miscutils/less.c | |
parent | 38013e394f1d5b9199abf2f8507c96585ced6f8c (diff) | |
download | busybox-w32-8d3c40d492a13131d14aa8d79787e0fa98f6be85.tar.gz busybox-w32-8d3c40d492a13131d14aa8d79787e0fa98f6be85.tar.bz2 busybox-w32-8d3c40d492a13131d14aa8d79787e0fa98f6be85.zip |
more C-compatibily, Thanks Bernhard Fischer
Diffstat (limited to 'miscutils/less.c')
-rw-r--r-- | miscutils/less.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 99149a51d..d7898caab 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -670,9 +670,10 @@ static char *process_regex_on_line(char *line, regex_t *pattern) { | |||
670 | char *line2 = (char *) malloc((sizeof(char) * (strlen(line) + 1)) + 64); | 670 | char *line2 = (char *) malloc((sizeof(char) * (strlen(line) + 1)) + 64); |
671 | char sub_line[256]; | 671 | char sub_line[256]; |
672 | int prev_eo = 0; | 672 | int prev_eo = 0; |
673 | regmatch_t match_structs; | ||
674 | |||
673 | memset(sub_line, 0, 256); | 675 | memset(sub_line, 0, 256); |
674 | strcpy(line2, line); | 676 | strcpy(line2, line); |
675 | regmatch_t match_structs; | ||
676 | 677 | ||
677 | match_found = 0; | 678 | match_found = 0; |
678 | match_status = regexec(pattern, line2, 1, &match_structs, 0); | 679 | match_status = regexec(pattern, line2, 1, &match_structs, 0); |