Skip to content

Commit

Permalink
Do not bug check when any WMI method is not implemented. (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacore-rm authored and lundman committed Oct 18, 2023
1 parent 5b28038 commit 693e68f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions module/os/windows/zfs/zfs_windows_zvol_wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -762,13 +762,6 @@ ExecuteWmiMethod(
}

default:

__try {
DbgBreakPoint();
}
__except(EXCEPTION_EXECUTE_HANDLER) {
}

status = SRB_STATUS_INVALID_REQUEST;
break;
}
Expand Down Expand Up @@ -1036,12 +1029,6 @@ ExecuteWmiMethod(
}

default:
__try {
DbgBreakPoint();
}
__except(EXCEPTION_EXECUTE_HANDLER) {
}

status = SRB_STATUS_INVALID_REQUEST;
break;
}
Expand Down

0 comments on commit 693e68f

Please sign in to comment.