<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

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@160326 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/StopInfo.cpp b/source/Target/StopInfo.cpp
index 5b782be..fe4f795 100644
--- a/source/Target/StopInfo.cpp
+++ b/source/Target/StopInfo.cpp
@@ -520,7 +520,8 @@
                                                                       wp_sp->GetConditionText(),
                                                                       NULL,
                                                                       result_value_sp,
-                                                                      error);
+                                                                      error,
+                                                                      500000);
                 if (result_code == eExecutionCompleted)
                 {
                     if (result_value_sp)