diff options
author | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-05-08 18:15:07 +0000 |
---|---|---|
committer | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-05-08 18:15:07 +0000 |
commit | 7ab126ecdd5237ccd566f415cc560b39f87e8a0f (patch) | |
tree | e5663db8f6e6e5537ccea20e0bbd7c7afd35979d /src/client/windows/tests | |
parent | Some style guide compliance changes and changed the prototype of the method t... (diff) | |
download | breakpad-7ab126ecdd5237ccd566f415cc560b39f87e8a0f.tar.xz |
Replace the user of wcscpy_s with safe_wcscpy in common/windows/string_utils-inl.h to
make the code compatible for teams that still use VS 2003 to build.
Fix a bug in client ClientInfo class that returned CustomClientInfo struct containing
a pointer in the client process address space instead of pointer to in-process data
structure.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@271 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 | 4 |
1 files changed, 2 insertions, 2 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 e0cd2f04..7ed1021b 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 @@ -35,7 +35,7 @@ namespace google_breakpad { const int kMaxLoadString = 100; -const wchar_t kPipeName[] = L"\\\\.\\pipe\\GoogleCrashServices-Testing"; +const wchar_t kPipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\S-1-5-21-39260824-743453154-142223018-195347"; const DWORD kEditBoxStyles = WS_CHILD | WS_VISIBLE | @@ -221,7 +221,7 @@ static void _cdecl ShowClientCrashed(void* context, QueueUserWorkItem(AppendTextWorker, line, WT_EXECUTEDEFAULT); - const CustomClientInfo& custom_info = client_info->GetCustomInfo(); + CustomClientInfo custom_info = client_info->GetCustomInfo(); if (custom_info.count <= 0) { return; } |