Merge pull request #1483 from furunkel/patch-1

Don't use zero maxlen for snprintf in ts_subtree__write_to_string
This commit is contained in:
Max Brunsfeld 2021-12-23 10:52:20 -08:00 committed by GitHub
commit ddeaa0c7f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -874,7 +874,7 @@ static size_t ts_subtree__write_to_string(
if (!self.ptr) return snprintf(string, limit, "(NULL)");
char *cursor = string;
char **writer = (limit > 0) ? &cursor : &string;
char **writer = (limit > 1) ? &cursor : &string;
bool is_root = field_name == ROOT_FIELD;
bool is_visible =
include_all ||
@ -973,7 +973,7 @@ char *ts_subtree_string(
) {
char scratch_string[1];
size_t size = ts_subtree__write_to_string(
self, scratch_string, 0,
self, scratch_string, 1,
language, include_all,
0, false, ROOT_FIELD
) + 1;