imagehlp/tests: Remove a workaround for Win95.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-06-12 23:34:48 +02:00
parent 70e1f845c7
commit dffa0b0210
1 changed files with 0 additions and 9 deletions

View File

@ -407,15 +407,6 @@ START_TEST(integrity)
}
file_size_orig = get_file_size();
/*
* Align file_size_orig to an 8-byte boundary. This avoids tests failures where
* the original dll is not correctly aligned (but when written to it will be).
*/
if (file_size_orig % 8 != 0)
{
skip("We need to align to an 8-byte boundary\n");
file_size_orig = (file_size_orig + 7) & ~7;
}
pImageAddCertificate = (void *) GetProcAddress(hImageHlp, "ImageAddCertificate");
pImageEnumerateCertificates = (void *) GetProcAddress(hImageHlp, "ImageEnumerateCertificates");