This commit is contained in:
Eelco Dolstra 2014-03-18 23:23:55 +01:00
parent 51800e06de
commit 3fc056927c
1 changed files with 6 additions and 6 deletions

View File

@ -294,14 +294,14 @@ static void performOp(bool trusted, unsigned int clientVersion,
#endif
case wopIsValidPath: {
/* 'readStorePath' could raise an error leading to the connection
being closed. To be able to recover from an invalid path error,
call 'startWork' early, and do 'assertStorePath' afterwards so
that the 'Error' exception handler doesn't close the
connection. */
/* 'readStorePath' could raise an error leading to the connection
being closed. To be able to recover from an invalid path error,
call 'startWork' early, and do 'assertStorePath' afterwards so
that the 'Error' exception handler doesn't close the
connection. */
Path path = readString(from);
startWork();
assertStorePath(path);
assertStorePath(path);
bool result = store->isValidPath(path);
stopWork();
writeInt(result, to);