combined_pattern_len is not used

This commit is contained in:
c9s 2014-05-23 11:30:15 +08:00
parent 3f4fcb8c27
commit ad6b7b236f
2 changed files with 0 additions and 2 deletions

View file

@ -41,7 +41,6 @@ struct _node {
/* the combined regexp pattern string from pattern_tokens */ /* the combined regexp pattern string from pattern_tokens */
char * combined_pattern; char * combined_pattern;
int combined_pattern_len;
int ov_cnt; int ov_cnt;
int * ov; int * ov;
pcre * pcre_pattern; pcre * pcre_pattern;

View file

@ -194,7 +194,6 @@ void r3_tree_compile_patterns(node * n) {
n->combined_pattern = cpat; n->combined_pattern = cpat;
n->combined_pattern_len = p - cpat;
const char *error; const char *error;