Title: [126703] trunk/Source/WebCore
- Revision
- 126703
- Author
- [email protected]
- Date
- 2012-08-26 05:00:19 -0700 (Sun, 26 Aug 2012)
Log Message
[BlackBerry] Stop leaking a pthread_attr in CookieDatabaseBackingStore
https://bugs.webkit.org/show_bug.cgi?id=95029
Patch by Joe Mason <[email protected]> on 2012-08-26
Reviewed by Rob Buis.
No new tests (no behaviour change)
RIM PR 198519
* platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.cpp:
(WebCore::CookieDatabaseBackingStore::CookieDatabaseBackingStore): use pthread_attr_default
instead of pthread_attr_init
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (126702 => 126703)
--- trunk/Source/WebCore/ChangeLog 2012-08-26 11:18:25 UTC (rev 126702)
+++ trunk/Source/WebCore/ChangeLog 2012-08-26 12:00:19 UTC (rev 126703)
@@ -1,3 +1,17 @@
+2012-08-26 Joe Mason <[email protected]>
+
+ [BlackBerry] Stop leaking a pthread_attr in CookieDatabaseBackingStore
+ https://bugs.webkit.org/show_bug.cgi?id=95029
+
+ Reviewed by Rob Buis.
+
+ No new tests (no behaviour change)
+ RIM PR 198519
+
+ * platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.cpp:
+ (WebCore::CookieDatabaseBackingStore::CookieDatabaseBackingStore): use pthread_attr_default
+ instead of pthread_attr_init
+
2012-08-25 David Barton <[email protected]>
Remove { vertical-align: baseline } declarations from mathml.css
Modified: trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.cpp (126702 => 126703)
--- trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.cpp 2012-08-26 11:18:25 UTC (rev 126702)
+++ trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.cpp 2012-08-26 12:00:19 UTC (rev 126703)
@@ -65,9 +65,7 @@
m_dbTimerClient = new BlackBerry::Platform::GenericTimerClient(this);
m_dbTimer.setClient(m_dbTimerClient);
- pthread_attr_t threadAttrs;
- pthread_attr_init(&threadAttrs);
- createThread("cookie_database", threadAttrs);
+ createThread("cookie_database", pthread_attr_default);
}
CookieDatabaseBackingStore::~CookieDatabaseBackingStore()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes