Skip to content

Commit 628e4e3

Browse files
committed
1 parent 71cdb8d commit 628e4e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/simdjson/parsedjson.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct ParsedJson {
5151
n_structural_indexes = 0;
5252
u32 max_structures = ROUNDUP_N(len, 64) + 2 + 7;
5353
structural_indexes = new u32[max_structures];
54-
size_t localtapecapacity = ROUNDUP_N(len / 2, 64);
54+
size_t localtapecapacity = ROUNDUP_N(len, 64);
5555
size_t localstringcapacity = ROUNDUP_N(len, 64);
5656
string_buf = new u8[localstringcapacity];
5757
tape = new u64[localtapecapacity];

0 commit comments

Comments
 (0)