<rdar://problem/11672978> Fixing an issue where an ObjC object might come out without a description because the expression used to obtain it would timeout before running to completion

llvm-svn: 160326
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp
index 3c04eb3..4fecc6b 100644
--- a/lldb/source/Commands/CommandObjectExpression.cpp
+++ b/lldb/source/Commands/CommandObjectExpression.cpp
@@ -305,7 +305,8 @@
                                                   m_command_options.unwind_on_error,
                                                   keep_in_memory, 
                                                   use_dynamic, 
-                                                  result_valobj_sp);
+                                                  result_valobj_sp,
+                                                  0 /* no timeout */);
         
         if (exe_results == eExecutionInterrupted && !m_command_options.unwind_on_error)
         {