Title: [154552] trunk/Source/WTF
Revision
154552
Author
[email protected]
Date
2013-08-24 13:07:17 -0700 (Sat, 24 Aug 2013)

Log Message

REGRESSION(r154498): Crashes on EFL, GTK, Qt on release configurations
https://bugs.webkit.org/show_bug.cgi?id=120246

Reviewed by Antti Koivisto.

Undestroy all the platforms that don't use the global new overload

* wtf/Compression.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (154551 => 154552)


--- trunk/Source/WTF/ChangeLog	2013-08-24 20:04:11 UTC (rev 154551)
+++ trunk/Source/WTF/ChangeLog	2013-08-24 20:07:17 UTC (rev 154552)
@@ -1,3 +1,14 @@
+2013-08-24  Oliver Hunt  <[email protected]>
+
+        REGRESSION(r154498): Crashes on EFL, GTK, Qt on release configurations
+        https://bugs.webkit.org/show_bug.cgi?id=120246
+
+        Reviewed by Antti Koivisto.
+
+        Undestroy all the platforms that don't use the global new overload
+
+        * wtf/Compression.h:
+
 2013-08-21  Mark Rowe  <[email protected]>
 
         <https://webkit.org/b/120141> Make RetainPtr work with ARC.

Modified: trunk/Source/WTF/wtf/Compression.h (154551 => 154552)


--- trunk/Source/WTF/wtf/Compression.h	2013-08-24 20:04:11 UTC (rev 154551)
+++ trunk/Source/WTF/wtf/Compression.h	2013-08-24 20:07:17 UTC (rev 154552)
@@ -33,6 +33,7 @@
 
 class GenericCompressedData {
     WTF_MAKE_NONCOPYABLE(GenericCompressedData)
+    WTF_MAKE_FAST_ALLOCATED;
 public:
     WTF_EXPORT_PRIVATE static PassOwnPtr<GenericCompressedData> create(const uint8_t*, size_t);
     uint32_t compressedSize() const { return m_compressedSize; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to