aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-05-15 22:33:29 +0000
committerthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-05-15 22:33:29 +0000
commit4191cae3611eb4c0bc59d6f5f2f9f96ee9d145c6 (patch)
treebadcdff873ecd0dbb7e25f6fb70970c6794e5d9f /src
parentIncrease kMinidumpFileLengthLimit from 800000 to 2MB. (diff)
downloadbreakpad-4191cae3611eb4c0bc59d6f5f2f9f96ee9d145c6.tar.xz
Initialize a CustomClientInfo variable. (Coverity)
Review URL: https://breakpad.appspot.com/390003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@967 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r--src/client/windows/crash_generation/crash_generation_client.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/windows/crash_generation/crash_generation_client.cc b/src/client/windows/crash_generation/crash_generation_client.cc
index 84a686a4..ffbcaf20 100644
--- a/src/client/windows/crash_generation/crash_generation_client.cc
+++ b/src/client/windows/crash_generation/crash_generation_client.cc
@@ -173,7 +173,7 @@ bool CrashGenerationClient::RequestUpload(DWORD crash_id) {
return false;
}
- CustomClientInfo custom_info;
+ CustomClientInfo custom_info = {NULL, 0};
ProtocolMessage msg(MESSAGE_TAG_UPLOAD_REQUEST, crash_id,
static_cast<MINIDUMP_TYPE>(NULL), NULL, NULL, NULL,
custom_info, NULL, NULL, NULL);