Skip to content

Commit

Permalink
return STATUS_NOT_FOUND instead on cancel request with overlapped io
Browse files Browse the repository at this point in the history
  • Loading branch information
stevefan1999-personal authored and mingkuang-Chuyu committed Oct 22, 2024
1 parent 4681d56 commit 89330b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Thunks/ntdll.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace YY::Thunks
if (io != nullptr)
{
// Not supported
return STATUS_NOT_SUPPORTED;
return STATUS_NOT_FOUND;
}

internal::StringBuffer<char> _Buffer;
Expand Down

0 comments on commit 89330b3

Please sign in to comment.