Forgot
This commit is contained in:
parent
0d7605a43f
commit
981a1931d4
7
baked.c
7
baked.c
@ -57,8 +57,9 @@ find_region(const char * fn)
|
|||||||
|
|
||||||
fd = open(fn, O_RDONLY);
|
fd = open(fn, O_RDONLY);
|
||||||
|
|
||||||
if ( fd != -1
|
if (fd != -1)
|
||||||
&& !fstat(fd,&s)
|
{
|
||||||
|
if (!fstat(fd,&s)
|
||||||
&& s.st_mode & S_IFREG
|
&& s.st_mode & S_IFREG
|
||||||
&& s.st_size)
|
&& s.st_size)
|
||||||
{
|
{
|
||||||
@ -100,6 +101,8 @@ find_region(const char * fn)
|
|||||||
munmap(addr, s.st_size);
|
munmap(addr, s.st_size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
close(fd);
|
||||||
|
}
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user