Initializes (uint64_t)buf variable, patch by Filipe Cabecinhas!

llvm-svn: 138565
This commit is contained in:
Johnny Chen 2011-08-25 17:40:39 +00:00
parent 160276dc93
commit 40e3592961
1 changed files with 1 additions and 1 deletions

View File

@ -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)