Skip to content

Commit

Permalink
Fixed another UI client crash
Browse files Browse the repository at this point in the history
  • Loading branch information
nefarius committed Mar 7, 2024
1 parent 3257eb7 commit 3328f62
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions HidHideCLI/src/HID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,9 @@ namespace
// The device is currently not present hence we can't query its details
result.usage = HidHide::StringTable(IDS_HID_ATTRIBUTE_ABSENT);
return (result);
case ERROR_PATH_NOT_FOUND:
// The symbolic link could not be opened
return (result);
default:
THROW_WIN32_LAST_ERROR;
}
Expand Down

0 comments on commit 3328f62

Please sign in to comment.