Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 436853b

Browse files
authored
Merge pull request #20349 from anntzer/ttp
Fix missing write in TTStreamWriter::printf.
2 parents a56da4a + f8544fe commit 436853b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

extern/ttconv/ttutil.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ void TTStreamWriter::printf(const char* format, ...)
4545
#else
4646
vsnprintf(buffer2, size, format, arg_list);
4747
#endif
48+
this->write(buffer2);
4849
free(buffer2);
4950
} else {
5051
this->write(buffer);

0 commit comments

Comments
 (0)