mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-01-10 22:35:41 +00:00
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
This commit is contained in:
parent
df8d4f964f
commit
4191cae361
|
@ -173,7 +173,7 @@ bool CrashGenerationClient::RequestUpload(DWORD crash_id) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomClientInfo custom_info;
|
CustomClientInfo custom_info = {NULL, 0};
|
||||||
ProtocolMessage msg(MESSAGE_TAG_UPLOAD_REQUEST, crash_id,
|
ProtocolMessage msg(MESSAGE_TAG_UPLOAD_REQUEST, crash_id,
|
||||||
static_cast<MINIDUMP_TYPE>(NULL), NULL, NULL, NULL,
|
static_cast<MINIDUMP_TYPE>(NULL), NULL, NULL, NULL,
|
||||||
custom_info, NULL, NULL, NULL);
|
custom_info, NULL, NULL, NULL);
|
||||||
|
|
Loading…
Reference in a new issue