summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorAndrew A. de Laix <alain@lindenlab.com>2010-06-29 14:51:26 -0700
committerAndrew A. de Laix <alain@lindenlab.com>2010-06-29 14:51:26 -0700
commit1ec7de1b5760b5fc1ebda1d244784e3bc4596eb1 (patch)
tree8c1679ed4cbcd8f40025844df3b9934ee2eeecb2 /indra/llcommon
parent4a3710501b1aeae90afbd48c7e3531c86f92517e (diff)
Generate windows minidump files on crash for developer (not release for download) builds. SL crash reporter still enabled.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llapp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp
index 0447ca93f5..8f2fe6c26e 100644
--- a/indra/llcommon/llapp.cpp
+++ b/indra/llcommon/llapp.cpp
@@ -920,6 +920,10 @@ bool windows_post_minidump_callback(const wchar_t* dump_path,
ms_sleep(10);
}
+#ifndef LL_RELEASE_FOR_DOWNLOAD
+ return false;
+#else
return true;
+#endif
}
#endif