Fix for uninitialized variable in basic_source_line_resolver.cc
R=TBR A=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@598 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
bcf885c807
commit
951583a8ca
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ bool BasicSourceLineResolver::Module::ParseStackInfo(char *stack_info_line) {
|
||||||
|
|
||||||
// MSVC stack frame info.
|
// MSVC stack frame info.
|
||||||
if (strcmp(platform, "WIN") == 0) {
|
if (strcmp(platform, "WIN") == 0) {
|
||||||
int type;
|
int type = 0;
|
||||||
u_int64_t rva, code_size;
|
u_int64_t rva, code_size;
|
||||||
linked_ptr<WindowsFrameInfo>
|
linked_ptr<WindowsFrameInfo>
|
||||||
stack_frame_info(WindowsFrameInfo::ParseFromString(stack_info_line,
|
stack_frame_info(WindowsFrameInfo::ParseFromString(stack_info_line,
|
||||||
|
|
Loading…
Reference in a new issue