diff options
Diffstat (limited to 'libc/async_safe/async_safe_log.cpp')
-rw-r--r-- | libc/async_safe/async_safe_log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/async_safe/async_safe_log.cpp b/libc/async_safe/async_safe_log.cpp index d5aad16d6..1018ef5e0 100644 --- a/libc/async_safe/async_safe_log.cpp +++ b/libc/async_safe/async_safe_log.cpp @@ -537,7 +537,7 @@ void async_safe_fatal_va_list(const char* prefix, const char* format, va_list ar // Log to stderr for the benefit of "adb shell" users and gtests. struct iovec iov[2] = { - {msg, os.total}, {const_cast<char*>("\n"), 1}, + {msg, strlen(msg)}, {const_cast<char*>("\n"), 1}, }; TEMP_FAILURE_RETRY(writev(2, iov, 2)); |