revert Win32 change (#732)

This commit is contained in:
Tess Gauthier 2024-08-01 14:09:20 -04:00 committed by GitHub
parent 43c6e39474
commit 57149fe90d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -27,10 +27,6 @@ timingsafe_bcmp(const void *b1, const void *b2, size_t n)
int ret = 0;
for (; n > 0; n--) {
#ifdef WINDOWS
if (*p1 == '\r' && *(p1 + 1) == '\n' && *p2 == '\n')
p1++;
#endif // WINDOWS
ret |= *p1++ ^ *p2++;
}