[Lldb-commits] [lldb] r186221 - Missed a checking that should have been checked in with 186211.

Greg Clayton gclayton at apple.com
Fri Jul 12 15:40:04 PDT 2013


Author: gclayton
Date: Fri Jul 12 17:40:04 2013
New Revision: 186221

URL: http://llvm.org/viewvc/llvm-project?rev=186221&view=rev
Log:
Missed a checking that should have been checked in with 186211.


Modified:
    lldb/trunk/source/Host/common/Symbols.cpp

Modified: lldb/trunk/source/Host/common/Symbols.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Symbols.cpp?rev=186221&r1=186220&r2=186221&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Symbols.cpp (original)
+++ lldb/trunk/source/Host/common/Symbols.cpp Fri Jul 12 17:40:04 2013
@@ -93,7 +93,7 @@ Symbols::LocateExecutableSymbolFile (con
             if (file_spec.Exists())
             {
                 lldb_private::ModuleSpecList specs;
-                const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, specs);
+                const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, 0, specs);
                 assert (num_specs <= 1 && "Symbol Vendor supports only a single architecture");
                 if (num_specs == 1)
                 {





More information about the lldb-commits mailing list