Skip to content
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