[Lldb-commits] [PATCH] D24064: Fix lldb build on Mac.
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 7 06:48:17 PDT 2019
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG30ff4b485147: Fix lldb build on Mac. (authored by labath).
Herald added a project: LLDB.
Changed prior to commit:
https://reviews.llvm.org/D24064?vs=69784&id=223561#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D24064/new/
https://reviews.llvm.org/D24064
Files:
lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
Index: lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
===================================================================
--- lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
+++ lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
@@ -1099,7 +1099,7 @@
return false;
}
payload_bytes.resize(ascii_hex_bytes_cstr_len/2);
- if (extractor.GetHexBytes(&payload_bytes[0], payload_bytes.size(), '\xdd') != payload_bytes.size())
+ if (extractor.GetHexBytes(payload_bytes, '\xdd') != payload_bytes.size())
{
result.AppendErrorWithFormat ("payload data must only contain ASCII hex characters (no spaces or hex prefixes): '%s'", ascii_hex_bytes_cstr);
result.SetStatus (eReturnStatusFailed);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24064.223561.patch
Type: text/x-patch
Size: 976 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191007/dc26eae1/attachment.bin>
More information about the lldb-commits
mailing list