[NTOS:KE] Fix copy paste bug in exception helper routine for ARM (#4005)

This commit is contained in:
Rafał Mikrut 2021-10-07 19:45:21 +02:00 committed by Stanislav Motylkov
parent 7e3a7a0e84
commit 54d5ad7533
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92

View file

@ -134,7 +134,7 @@ KeTrapFrameToContext(IN PKTRAP_FRAME TrapFrame,
Context->R6 = ExceptionFrame->R6;
Context->R7 = ExceptionFrame->R7;
Context->R8 = ExceptionFrame->R8;
Context->R0 = ExceptionFrame->R9;
Context->R9 = ExceptionFrame->R9;
Context->R10 = ExceptionFrame->R10;
Context->R11 = ExceptionFrame->R11;
Context->R12 = TrapFrame->R12;