Skip to content

b4304

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Dec 14:32
484d2f3
bug-fix: snprintf prints NULL in place of the last character (#10419)

* bug-fix: snprintf prints NULL in place of the last character

We need to give snprintf enough space to print the last character and the null character, thus we allocate one extra byte and then ignore it when converting to std::string.

* add comment about extra null-term byte requirement