aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/handler/exception_handler.cc
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-07-05 22:13:02 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-07-05 22:13:02 +0000
commitb62d01462c23676335eb09c0e0b988967d67b387 (patch)
treef04f1db072d94b41312577209a64053f49a04738 /src/client/windows/handler/exception_handler.cc
parentissue 151 - Crash when processing file names less than 4 bytes. r=me (diff)
downloadbreakpad-b62d01462c23676335eb09c0e0b988967d67b387.tar.xz
Issue 175 - fix permissions on dump file in MinidumpFileWriter. r=mento
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@197 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/handler/exception_handler.cc')
-rw-r--r--src/client/windows/handler/exception_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc
index 9a9d5266..4bb67b21 100644
--- a/src/client/windows/handler/exception_handler.cc
+++ b/src/client/windows/handler/exception_handler.cc
@@ -452,9 +452,9 @@ bool ExceptionHandler::WriteMinidumpWithException(
if (minidump_write_dump_) {
HANDLE dump_file = CreateFile(next_minidump_path_c_,
GENERIC_WRITE,
- FILE_SHARE_WRITE,
+ 0, // no sharing
NULL,
- CREATE_ALWAYS,
+ CREATE_NEW, // fail if exists
FILE_ATTRIBUTE_NORMAL,
NULL);
if (dump_file != INVALID_HANDLE_VALUE) {