mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 20:53:06 +08:00
Add the missing HAVE_GETPAGESIZE check in get_view
This commit is contained in:
@ -529,9 +529,13 @@ get_view (const void *handle, const void **viewp)
|
||||
size += bias;
|
||||
# endif
|
||||
buffer = mmap (NULL, size, PROT_READ, MAP_PRIVATE, input->fd, offset);
|
||||
# if HAVE_GETPAGESIZE
|
||||
if (buffer != MAP_FAILED)
|
||||
buffer += bias;
|
||||
else
|
||||
# else
|
||||
if (buffer == MAP_FAILED)
|
||||
# endif
|
||||
#endif
|
||||
{
|
||||
char *p;
|
||||
|
Reference in New Issue
Block a user