Skip to content

re.c: fix recursive call arguments and set CC optionally #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Compiler to use - can be replaced by clang for instance
CC := gcc
CC ?= gcc

# Number of random text expressions to generate, for random testing
NRAND_TESTS := 1000
Expand Down
2 changes: 1 addition & 1 deletion re.c
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ static int matchpattern(regex_t* pattern, const char* text, int *matchlength)
else if ((text[0] != '\0') && matchone(pattern[0], text[0]))
{
(*matchlength)++;
return matchpattern(&pattern[1], text+1);
return matchpattern(&pattern[1], text+1, matchlength);
}
else
{
Expand Down