| 95 | |
| 96 | |
| 97 | _Use_decl_annotations_ |
| 98 | NTSTATUS |
| 99 | IvValidateDebugRegisterIndex( |
| 100 | ULONG DebugRegisterIndex |
| 101 | ) |
| 102 | { |
| 103 | NTSTATUS ntstatus = STATUS_SUCCESS; |
| 104 | |
| 105 | if (DAR_COUNT <= DebugRegisterIndex) |
| 106 | { |
| 107 | ntstatus = STATUS_INVALID_PARAMETER; |
| 108 | goto exit; |
| 109 | } |
| 110 | |
| 111 | exit: |
| 112 | return ntstatus; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | _Use_decl_annotations_ |
no outgoing calls
no test coverage detected