Shut up a Valgrind warning

This commit is contained in:
Eelco Dolstra 2014-12-12 15:10:02 +01:00 committed by Ludovic Courtès
parent 7930b2cb76
commit 159b7103a7
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ void LocalStore::makeStoreWritable()
if (unshare(CLONE_NEWNS) == -1)
throw SysError("setting up a private mount namespace");
if (mount(0, settings.nixStore.c_str(), 0, MS_REMOUNT | MS_BIND, 0) == -1)
if (mount(0, settings.nixStore.c_str(), "none", MS_REMOUNT | MS_BIND, 0) == -1)
throw SysError(format("remounting %1% writable") % settings.nixStore);
}
#endif