mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
dll: FspFileSystemResolveReparsePoints: return STATUS_OBJECT_PATH_NOT_FOUND when appropriate
This commit is contained in:
parent
f509281be4
commit
146570dd74
@ -1213,7 +1213,11 @@ FSP_API NTSTATUS FspFileSystemResolveReparsePoints(FSP_FILE_SYSTEM *FileSystem,
|
|||||||
/* it was not a reparse point; continue */
|
/* it was not a reparse point; continue */
|
||||||
continue;
|
continue;
|
||||||
else if (!NT_SUCCESS(Result))
|
else if (!NT_SUCCESS(Result))
|
||||||
|
{
|
||||||
|
if (STATUS_OBJECT_NAME_NOT_FOUND == Result && '\0' == *p)
|
||||||
|
Result = STATUS_OBJECT_PATH_NOT_FOUND;
|
||||||
return Result;
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
/* found a reparse point */
|
/* found a reparse point */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user