Merge "Fix a mistype in segment overrange checking"

This commit is contained in:
Elliott Hughes 2015-08-20 23:13:15 +00:00 committed by Gerrit Code Review
commit 49715dcc8a

View File

@ -382,7 +382,7 @@ bool ElfReader::LoadSegments() {
return false;
}
if (file_end >= static_cast<size_t>(file_size_)) {
if (file_end > static_cast<size_t>(file_size_)) {
DL_ERR("invalid ELF file \"%s\" load segment[%zd]:"
" p_offset (%p) + p_filesz (%p) ( = %p) past end of file (0x%" PRIx64 ")",
name_, i, reinterpret_cast<void*>(phdr->p_offset),