initialize node.data
This commit is contained in:
parent
3e03f8ed97
commit
ce4095af35
1 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,7 @@ node * r3_tree_create(int cap) {
|
|||
n->combined_pattern = NULL;
|
||||
n->pcre_pattern = NULL;
|
||||
n->pcre_extra = NULL;
|
||||
n->data = NULL;
|
||||
return n;
|
||||
}
|
||||
|
||||
|
@ -468,6 +469,7 @@ node * r3_node_create() {
|
|||
n->combined_pattern = NULL;
|
||||
n->pcre_pattern = NULL;
|
||||
n->pcre_extra = NULL;
|
||||
n->data = NULL;
|
||||
return n;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue