Title: [131288] trunk/Source/WebKit2
- Revision
- 131288
- Author
- [email protected]
- Date
- 2012-10-14 19:40:48 -0700 (Sun, 14 Oct 2012)
Log Message
Fix the world.
Add back a forgotten !.
* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::postInjectedBundleMessage):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (131287 => 131288)
--- trunk/Source/WebKit2/ChangeLog 2012-10-15 02:33:01 UTC (rev 131287)
+++ trunk/Source/WebKit2/ChangeLog 2012-10-15 02:40:48 UTC (rev 131288)
@@ -1,3 +1,12 @@
+2012-10-14 Anders Carlsson <[email protected]>
+
+ Fix the world.
+
+ Add back a forgotten !.
+
+ * WebProcess/WebPage/WebPage.cpp:
+ (WebKit::WebPage::postInjectedBundleMessage):
+
2012-10-14 Sam Weinig <[email protected]>
Stop all the crashing!
Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (131287 => 131288)
--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp 2012-10-15 02:33:01 UTC (rev 131287)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp 2012-10-15 02:40:48 UTC (rev 131288)
@@ -1222,7 +1222,7 @@
return;
RefPtr<APIObject> messageBody;
- if (argumentDecoder->decode(InjectedBundleUserMessageDecoder(messageBody)))
+ if (!argumentDecoder->decode(InjectedBundleUserMessageDecoder(messageBody)))
return;
injectedBundle->didReceiveMessageToPage(this, messageName, messageBody.get());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes