diff options
author | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-04-17 21:21:48 +0000 |
---|---|---|
committer | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-04-17 21:21:48 +0000 |
commit | 9033edcd7bab5a25c748dd1979f51853bbe06f87 (patch) | |
tree | 90ac4ba3abb5cc27966d9f91821152b69bbd76b8 /src/client/windows/tests | |
parent | Fix a bug in start address calculation (diff) | |
download | breakpad-9033edcd7bab5a25c748dd1979f51853bbe06f87.tar.xz |
Add one more parameter to the ClientDumpRequestCallback in crash generation server
to pass in the path of the dump file if the dump was generated successfully.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@262 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/tests')
-rw-r--r-- | src/client/windows/tests/crash_generation_app/crash_generation_app.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/windows/tests/crash_generation_app/crash_generation_app.cc b/src/client/windows/tests/crash_generation_app/crash_generation_app.cc index 129cdb24..924d734a 100644 --- a/src/client/windows/tests/crash_generation_app/crash_generation_app.cc +++ b/src/client/windows/tests/crash_generation_app/crash_generation_app.cc @@ -197,7 +197,8 @@ static void _cdecl ShowClientConnected(void* context, } static void _cdecl ShowClientCrashed(void* context, - const ClientInfo* client_info) { + const ClientInfo* client_info, + const wstring* dump_path) { TCHAR* line = new TCHAR[kMaximumLineLength]; int result = swprintf_s(line, kMaximumLineLength, |