Bug 115865: our code only uses the lower 32 bits of the result of

QueryPerformanceFrequency, so assert that the higher 32 bits are all zeros.
This commit is contained in:
wtc%netscape.com 2002-10-24 04:10:25 +00:00
Родитель f8be7e55eb
Коммит 0b0539f6b9
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -55,6 +55,7 @@ _PR_MD_INTERVAL_INIT()
LARGE_INTEGER count;
if (QueryPerformanceFrequency(&count)) {
PR_ASSERT(count.HighPart == 0);
while(count.LowPart > PR_INTERVAL_MAX) {
count.LowPart >>= 1;
_nt_bitShift++;