Description
Currently the .reserved patch check function is:
public static boolean isReservedName(String src) { return src.startsWith(DOT_RESERVED_PATH_PREFIX); }
And DOT_RESERVED_PATH_PREFIX is /.reserved, it should be /.reserved/, for example: if some other directory prefix with /.reserved, we say it's /.reservedpath, then the check is wrong.