diff options
Diffstat (limited to 'libstore/zero.c')
-rw-r--r-- | libstore/zero.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstore/zero.c b/libstore/zero.c index e0ba5f5e..97d56ab1 100644 --- a/libstore/zero.c +++ b/libstore/zero.c @@ -157,6 +157,8 @@ error_t store_zero_create (size_t size, int flags, struct store **store) { struct store_run run = { 0, size }; - *store = _make_store (&store_zero_class, MACH_PORT_NULL, flags, 1, &run, 1, 0); + *store = + _make_store (&store_zero_class, MACH_PORT_NULL, + flags | STORE_INNOCUOUS, 1, &run, 1, 0); return *store ? 0 : ENOMEM; } |