Author: sylvestre
Date: Wed Aug 31 02:16:56 2016
New Revision: 280200

URL: http://llvm.org/viewvc/llvm-project?rev=280200&view=rev
Log:
Update the Linux code to reflect the changes done by zturner in r280139

Modified:
    lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp

Modified: lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp?rev=280200&r1=280199&r2=280200&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp Wed Aug 31 
02:16:56 2016
@@ -1687,7 +1687,7 @@ ParseMemoryRegionInfoFromProcMapsLine (c
     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);
 


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to