mirror of
https://github.com/ksherlock/mpw-shell.git
synced 2024-12-27 18:30:39 +00:00
open(O_CREATE) needs 3rd parameter.
This commit is contained in:
parent
da24b85f68
commit
225c3b8ebd
@ -278,7 +278,7 @@ void mapped_file_base::create(const path_type& p, size_t length) {
|
|||||||
|
|
||||||
if (is_open()) close();
|
if (is_open()) close();
|
||||||
|
|
||||||
fd = ::open(p.c_str(), O_RDWR | O_CREAT | O_TRUNC);
|
fd = ::open(p.c_str(), O_RDWR | O_CREAT | O_TRUNC, 0666);
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
return set_or_throw_error(nullptr, "open");
|
return set_or_throw_error(nullptr, "open");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user