8151805: fatal error: heap walk aborted with error 1

Reviewed-by: gtriantafill, dcubed
This commit is contained in:
Christian Tornqvist 2016-05-17 15:44:20 -04:00
parent 100d77bf15
commit 3b2bc5df71

View File

@ -5277,7 +5277,8 @@ bool os::check_heap(bool force) {
}
}
DWORD err = GetLastError();
if (err != ERROR_NO_MORE_ITEMS && err != ERROR_CALL_NOT_IMPLEMENTED) {
if (err != ERROR_NO_MORE_ITEMS && err != ERROR_CALL_NOT_IMPLEMENTED &&
(err == ERROR_INVALID_FUNCTION && phe.lpData != NULL)) {
HeapUnlock(heap);
fatal("heap walk aborted with error %d", err);
}