Initialize variable to silence warning

This will quiet LLVM.
This commit is contained in:
Rose
2023-12-28 10:38:06 -05:00
parent f08f86c716
commit 2676117656

View File

@@ -90,7 +90,7 @@ void Image::scanMachO(const llvm::object::MachOObjectFile *O) {
}
// The offset from the symbol is stored at the target address.
uint64_t Offset;
uint64_t Offset = 0;
auto OffsetContent =
getContentsAtAddress(bind.address(), O->getBytesInAddress());
if (OffsetContent.empty())