Title: [93905] trunk/Source/WebKit2
- Revision
- 93905
- Author
- wei...@apple.com
- Date
- 2011-08-26 13:37:40 -0700 (Fri, 26 Aug 2011)
Log Message
Fix typo in Connection.cpp
https://bugs.webkit.org/show_bug.cgi?id=67060
Reviewed by Anders Carlsson.
* Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::waitForSyncReply):
We want timedOut, not timeout. There is not a current way to cause this
to be an issue. This issue was caught by the Clang Static Analyzer.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (93904 => 93905)
--- trunk/Source/WebKit2/ChangeLog 2011-08-26 20:05:21 UTC (rev 93904)
+++ trunk/Source/WebKit2/ChangeLog 2011-08-26 20:37:40 UTC (rev 93905)
@@ -1,3 +1,15 @@
+2011-08-26 Sam Weinig <s...@webkit.org>
+
+ Fix typo in Connection.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=67060
+
+ Reviewed by Anders Carlsson.
+
+ * Platform/CoreIPC/Connection.cpp:
+ (CoreIPC::Connection::waitForSyncReply):
+ We want timedOut, not timeout. There is not a current way to cause this
+ to be an issue. This issue was caught by the Clang Static Analyzer.
+
2011-08-26 Alice Liu <alice....@apple.com>
https://bugs.webkit.org/show_bug.cgi?id=66823
Modified: trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp (93904 => 93905)
--- trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp 2011-08-26 20:05:21 UTC (rev 93904)
+++ trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp 2011-08-26 20:37:40 UTC (rev 93905)
@@ -475,7 +475,7 @@
// FIXME: Although we run forever, any events incoming will cause us to drop out and exit out. This however doesn't
// account for a timeout value passed in. Timeout is always NoTimeout in these cases, but that could change.
RunLoop::current()->runForDuration(1e10);
- timeout = currentTime() >= absoluteTime;
+ timedOut = currentTime() >= absoluteTime;
#endif
} else
timedOut = !m_syncMessageState->wait(absoluteTime);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes