Comment #7 on issue 25823 by [email protected]: Browser crash @  
net::HostResolverImpl::OnJobComplete()
http://code.google.com/p/chromium/issues/detail?id=25823

Rahul and I debugged this.
The comparator is wrong:

     bool operator<(const Key& other) const {
       if (address_family < other.address_family)
         return true;
       return hostname < other.hostname;
     }

So since the std::map uses the comparator to binary search through the  
results, it may not work depending
on what entries are in the map already.



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to