Guest User

Untitled

a guest
Oct 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /*
  2. * If the directory containing the file to open doesn't exist then
  3. * fail immediately
  4. */
  5. if (Status == STATUS_OBJECT_PATH_NOT_FOUND ||
  6. Status == STATUS_INVALID_PARAMETER ||
  7. Status == STATUS_DELETE_PENDING || Status == STATUS_ACCESS_DENIED)
  8. {
  9. if (ParentFcb)
  10. {
  11. vfatReleaseFCB (DeviceExt, ParentFcb);
  12. }
  13. return(Status);
  14. }
Add Comment
Please, Sign In to add comment