Removed wrong call to zfree that caused a segfault.
This commit is contained in:
parent
0e627e33d5
commit
18a92867fc
2 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,7 @@ node * r3_edge_branch(edge *e, int dl) {
|
||||||
char *op = e->pattern;
|
char *op = e->pattern;
|
||||||
e->pattern = strndup(e->pattern, dl);
|
e->pattern = strndup(e->pattern, dl);
|
||||||
e->pattern_len = dl;
|
e->pattern_len = dl;
|
||||||
zfree(op);
|
|
||||||
return new_child;
|
return new_child;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -440,3 +440,4 @@
|
||||||
1400607700,13972490.11
|
1400607700,13972490.11
|
||||||
1400655532,6648299.49
|
1400655532,6648299.49
|
||||||
1400655542,6685928.45
|
1400655542,6685928.45
|
||||||
|
1400659046,19754150.71
|
||||||
|
|
|
Loading…
Reference in a new issue