[Webkit-unassigned] [Bug 127820] API tests on Windows fail after r162774 (Debug)
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Jan 29 12:31:20 PST 2014
https://bugs.webkit.org/show_bug.cgi?id=127820
--- Comment #2 from Roger Fong <roger_fong at apple.com> 2014-01-29 12:28:43 PST ---
First-chance exception at 0x76D12EEC in TestWebKitAPI.exe: Microsoft C++ exception: Concurrency::scheduler_resource_allocation_error at memory location 0x0018FB90.
Unhandled exception at 0x76D12EEC in TestWebKitAPI.exe: Microsoft C++ exception: Concurrency::scheduler_resource_allocation_error at memory location 0x0018FB90.
In this code:
#if CHECK_HASHTABLE_ITERATORS
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::invalidateIterators()
{
std::lock_guard<std::mutex> lock(*m_mutex);
const_iterator* next;
for (const_iterator* p = m_iterators; p; p = next) { <----HERE
next = p->m_next;
p->m_table = 0;
p->m_next = 0;
p->m_previous = 0;
}
m_iterators = 0;
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list