Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: chrome/browser/worker_host/message_port_dispatcher.cc

Issue 1737019: Fix browser process crash in WorkerTest.WorkerContextMultiPort. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/worker/worker_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/worker_host/message_port_dispatcher.cc
diff --git a/chrome/browser/worker_host/message_port_dispatcher.cc b/chrome/browser/worker_host/message_port_dispatcher.cc
index f6e2bbf5c02e219b4ea1eb1b33f4dfa144a701ad..070ea3d6ba793d02a28efd1157fa11a8a267e996 100644
--- a/chrome/browser/worker_host/message_port_dispatcher.cc
+++ b/chrome/browser/worker_host/message_port_dispatcher.cc
@@ -237,6 +237,11 @@ void MessagePortDispatcher::OnSendQueuedMessages(
void MessagePortDispatcher::SendQueuedMessagesIfPossible(int message_port_id) {
DCHECK(CheckMessagePortMap(true));
+ if (!message_ports_.count(message_port_id)) {
+ NOTREACHED();
+ return;
+ }
+
MessagePort& port = message_ports_[message_port_id];
if (port.queue_messages || !port.sender)
return;
« no previous file with comments | « no previous file | chrome/worker/worker_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698