* mmap.cc (mmap_record::find_empty): Add input parameter check.
This commit is contained in:
parent
c7dd4f9511
commit
910e57ec84
|
@ -1,3 +1,7 @@
|
|||
2001-11-05 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* mmap.cc (mmap_record::find_empty): Add input parameter check.
|
||||
|
||||
2001-11-04 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* dtable.cc (dtable::build_fhandler): Fix debug_printf to avoid SEGV
|
||||
|
|
|
@ -109,6 +109,8 @@ mmap_record::find_empty (DWORD pages)
|
|||
DWORD mapped_pages = PAGE_CNT (size_to_map_);
|
||||
DWORD start;
|
||||
|
||||
if (pages > mapped_pages)
|
||||
return (DWORD)-1;
|
||||
for (start = 0; start <= mapped_pages - pages; ++start)
|
||||
if (!MAP_ISSET (start))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue