aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/handler/exception_handler.cc
diff options
context:
space:
mode:
authordoshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-05-07 21:54:12 +0000
committerdoshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-05-07 21:54:12 +0000
commit8602aa71ecba32d26985bdbbddc8e618ca203ff9 (patch)
treef48d6367dc8c520a762cf4ee541de68e13758613 /src/client/windows/handler/exception_handler.cc
parentBug fix for issue 263: mach_vm_region_recurse calls have invalid parameter sp... (diff)
downloadbreakpad-8602aa71ecba32d26985bdbbddc8e618ca203ff9.tar.xz
Some style guide compliance changes and changed the prototype of the method to get custom client info in ClientInfo class.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@270 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/handler/exception_handler.cc')
-rw-r--r--src/client/windows/handler/exception_handler.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc
index f6469d78..8594d1bf 100644
--- a/src/client/windows/handler/exception_handler.cc
+++ b/src/client/windows/handler/exception_handler.cc
@@ -117,9 +117,9 @@ void ExceptionHandler::Initialize(const wstring& dump_path,
// Attempt to use out-of-process if user has specified pipe name.
if (pipe_name != NULL) {
scoped_ptr<CrashGenerationClient> client(
- new CrashGenerationClient(pipe_name,
- dump_type_,
- custom_info));
+ new CrashGenerationClient(pipe_name,
+ dump_type_,
+ custom_info));
// If successful in registering with the monitoring process,
// there is no need to setup in-process crash generation.