Comment #9 on issue 15384 by [email protected]: Crash - BrowserRenderProcessHost::SendUserScriptsUpdate(base::SharedMemory*) http://code.google.com/p/chromium/issues/detail?id=15384
I noticed a crash today with the same characteristics on Windows with a recent trunk build. It looks like this can happen during BrowserRenderProcessHost creation since the BRPH signs up for USER_SCRIPTS_UPDATED notifications at construction but only creates channel_ in its Init() method. USER_SCRIPTS_UPDATED notification handling assumes channel_ has been created, so we have a race. http://codereview.chromium.org/155498 fixes the crash, but you might want to fix this by signing up for notifications later on instead. -- 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 -~----------~----~----~----~------~----~------~--~---
