Resolves: rhbz#767708 avoid SIGBUS writing to overcommitted mmaped diskspace
This commit is contained in:
parent
a4312af08c
commit
d11f2ccdce
@ -40,6 +40,7 @@
|
|||||||
#include "osl/mutex.hxx"
|
#include "osl/mutex.hxx"
|
||||||
#include "rtl/alloc.h"
|
#include "rtl/alloc.h"
|
||||||
#include "rtl/ustring.hxx"
|
#include "rtl/ustring.hxx"
|
||||||
|
#include "sal/log.hxx"
|
||||||
#include "sal/types.h"
|
#include "sal/types.h"
|
||||||
#include "typelib/typedescription.hxx"
|
#include "typelib/typedescription.hxx"
|
||||||
|
|
||||||
@ -65,6 +66,10 @@
|
|||||||
#error Unsupported platform
|
#error Unsupported platform
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined USE_DOUBLE_MMAP
|
||||||
|
#include <fcntl.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
using bridges::cpp_uno::shared::VtableFactory;
|
using bridges::cpp_uno::shared::VtableFactory;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
@ -259,9 +264,10 @@ bool VtableFactory::createBlock(Block &block, sal_Int32 slotCount) const
|
|||||||
}
|
}
|
||||||
unlink(tmpfname);
|
unlink(tmpfname);
|
||||||
delete[] tmpfname;
|
delete[] tmpfname;
|
||||||
if (ftruncate(block.fd, block.size) == -1)
|
int err = posix_fallocate(block.fd, 0, block.size);
|
||||||
|
if (err != 0)
|
||||||
{
|
{
|
||||||
perror("truncation of executable memory area failed");
|
SAL_WARN("bridges", "posix_fallocate failed with code " << err);
|
||||||
close(block.fd);
|
close(block.fd);
|
||||||
block.fd = -1;
|
block.fd = -1;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user