Log Message
Follow-up: WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create(). https://bugs.webkit.org/show_bug.cgi?id=191350
* wtf/WorkQueue.cpp: (WTF::WorkQueue::concurrentApply): Fix whitespace.
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (239893 => 239894)
--- trunk/Source/WTF/ChangeLog 2019-01-12 02:46:08 UTC (rev 239893)
+++ trunk/Source/WTF/ChangeLog 2019-01-12 03:07:47 UTC (rev 239894)
@@ -1,3 +1,11 @@
+2019-01-11 David Kilzer <[email protected]>
+
+ Follow-up: WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create().
+ https://bugs.webkit.org/show_bug.cgi?id=191350
+
+ * wtf/WorkQueue.cpp:
+ (WTF::WorkQueue::concurrentApply): Fix whitespace.
+
2019-01-11 Devin Rousso <[email protected]>
Fix style CFNetworkSPI style checker warnings from r239698
Modified: trunk/Source/WTF/wtf/WorkQueue.cpp (239893 => 239894)
--- trunk/Source/WTF/wtf/WorkQueue.cpp 2019-01-12 02:46:08 UTC (rev 239893)
+++ trunk/Source/WTF/wtf/WorkQueue.cpp 2019-01-12 03:07:47 UTC (rev 239894)
@@ -75,7 +75,7 @@
m_workers.reserveInitialCapacity(threadCount);
for (unsigned i = 0; i < threadCount; ++i) {
- m_workers.append(Thread::create("ThreadPool Worker", [this] {
+ m_workers.append(Thread::create("ThreadPool Worker", [this] {
threadBody();
}));
}
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
