| Index: src/log.cc
|
| diff --git a/src/log.cc b/src/log.cc
|
| index 95362c0910d28163fb1d72d0f47c38c262fe289c..6e4b401227d47f416ddf196a392a48e752cd0dab 100644
|
| --- a/src/log.cc
|
| +++ b/src/log.cc
|
| @@ -120,7 +120,7 @@ class CodeEventLogger::NameBuffer {
|
| } else {
|
| int char_length = unibrow::Utf8::Length(c, previous);
|
| if (utf8_pos_ + char_length > kUtf8BufferSize) break;
|
| - unibrow::Utf8::Encode(utf8_buffer_ + utf8_pos_, c, previous);
|
| + unibrow::Utf8::Encode(utf8_buffer_ + utf8_pos_, c, previous, true);
|
| utf8_pos_ += char_length;
|
| }
|
| previous = c;
|
|
|