diff options
author | Enrico Granata <egranata@apple.com> | 2012-08-24 01:34:39 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-08-24 01:34:39 +0000 |
commit | 4300fab2d4ac7d04035779b509b8e38219386096 (patch) | |
tree | 60fb774c75945cc985ab4bd8e96591e14f639d3a /lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp | |
parent | bb69a27dbc86667a3d1dc3389a2c2bd086cffb2c (diff) | |
download | bcm5719-llvm-4300fab2d4ac7d04035779b509b8e38219386096.tar.gz bcm5719-llvm-4300fab2d4ac7d04035779b509b8e38219386096.zip |
Fixing a bunch of issues with the OS plugin code
llvm-svn: 162527
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp index ba57c731eb9..4a782c6feca 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp @@ -56,7 +56,7 @@ OperatingSystem * OperatingSystemPython::CreateInstance (Process *process, bool force) { // Python OperatingSystem plug-ins must be requested by name, so force must be true - if (force) + //if (force) return new OperatingSystemPython (process); return NULL; } |