diff options
author | Mattiwatti <mattiwatti@gmail.com> | 2020-04-25 06:09:50 +0200 |
---|---|---|
committer | Mattiwatti <mattiwatti@gmail.com> | 2020-04-25 06:09:50 +0200 |
commit | fd5517c379a7e7bb22bcc14b26c0230bfc71f389 (patch) | |
tree | 702c04874f83f0a9932863bf5784b21074b828d1 /Include | |
parent | 77e1862430aa9499f7943e1d772d978c80542353 (diff) |
Fix comment typo
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Protocol/EfiGuard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Protocol/EfiGuard.h b/Include/Protocol/EfiGuard.h index 0ad4ab2..1973813 100644 --- a/Include/Protocol/EfiGuard.h +++ b/Include/Protocol/EfiGuard.h @@ -50,7 +50,7 @@ typedef enum _EFIGUARD_DSE_BYPASS_TYPE { // For writes, the field that was used to supply the data will contain the original value on return. // // To perform a memcpy, set UserBuffer to a pointer-aligned buffer, Size to the size of the buffer, and IsMemCopy to TRUE. -// There is SEH in UEFI for buffer probing, so it is the caller's responsibility that the address is valid and correctly aligned. +// There is no SEH in UEFI for buffer probing, so it is the caller's responsibility that the address is valid and correctly aligned. // No backup of the original buffer will be made because this would require memory allocation at runtime. If you wish to obtain // the contents of the current data at KernelAddress, call the backdoor twice with the first call having IsReadOperation = TRUE. // |