Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index 8094ca46989ea0735e1cd00d75ef7fc2ad66348b..88a72e8d993d2d2fbd8db0972f7d526c4a4ece67 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -48,6 +48,7 @@ |
#endif |
#if defined(OS_WIN) |
+#include <cstring> |
#include <atlbase.h> |
#include <atlapp.h> |
#include <malloc.h> |
@@ -398,6 +399,9 @@ class ContentMainRunnerImpl : public ContentMainRunner { |
is_shutdown_(false), |
completed_basic_startup_(false), |
delegate_(NULL) { |
+#if defined(OS_WIN) |
+ memset(&sandbox_info_, 0, sizeof(sandbox_info_)); |
+#endif |
} |
~ContentMainRunnerImpl() { |