forked from OSchip/llvm-project
Initializes (uint64_t)buf variable, patch by Filipe Cabecinhas!
llvm-svn: 138565
This commit is contained in:
parent
160276dc93
commit
40e3592961
|
@ -74,7 +74,7 @@ ReadUIntMax64 (ExecutionContextScope *exe_scope, const Address &address, uint32_
|
|||
success = false;
|
||||
return 0;
|
||||
}
|
||||
uint64_t buf;
|
||||
uint64_t buf = 0;
|
||||
|
||||
success = ReadBytes (exe_scope, address, &buf, byte_size) == byte_size;
|
||||
if (success)
|
||||
|
|
Loading…
Reference in New Issue