From: Sylvestre Ledru Date: Wed, 31 Aug 2016 07:16:56 +0000 (+0000) Subject: Update the Linux code to reflect the changes done by zturner in r280139 X-Git-Tag: llvmorg-4.0.0-rc1~11038 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c07a069b8e72dd820117c010aa569d3d1a180dd;p=platform%2Fupstream%2Fllvm.git Update the Linux code to reflect the changes done by zturner in r280139 llvm-svn: 280200 --- diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index 49d57c0..49efeb8 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -1687,7 +1687,7 @@ ParseMemoryRegionInfoFromProcMapsLine (const std::string &maps_line, MemoryRegio line_extractor.GetU64(0, 10); // Read the inode number line_extractor.SkipSpaces(); - const char* name = line_extractor.Peek(); + const char* name = line_extractor.PeekChar(); if (name) memory_region_info.SetName(name);