[ASan][Windows] Interception fix for 'mov al, byte ptr []' sequences (#72531)

GitOrigin-RevId: cbe27c45cdb33e73ee7b29c46e2a64359ae5cc8e
diff --git a/lib/interception/interception_win.cpp b/lib/interception/interception_win.cpp
index f3e6241..f1a549b 100644
--- a/lib/interception/interception_win.cpp
+++ b/lib/interception/interception_win.cpp
@@ -578,6 +578,7 @@
     case 0x018a:  // mov al, byte ptr [rcx]
       return 2;
 
+    case 0x058A:  // 8A 05 XX XX XX XX : mov al, byte ptr [XX XX XX XX]
     case 0x058B:  // 8B 05 XX XX XX XX : mov eax, dword ptr [XX XX XX XX]
       if (rel_offset)
         *rel_offset = 2;