Title: [146599] trunk/Source/_javascript_Core
Revision
146599
Author
[email protected]
Date
2013-03-22 06:35:00 -0700 (Fri, 22 Mar 2013)

Log Message

BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]
<http://webkit.org/b/112608>

Fixes the following build failure:

    Source/_javascript_Core/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
    }
    ^
    1 error generated.

* API/tests/testapi.mm:
(-[TinyDOMNode dealloc]): Call [super dealloc].

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/tests/testapi.mm (146598 => 146599)


--- trunk/Source/_javascript_Core/API/tests/testapi.mm	2013-03-22 13:27:23 UTC (rev 146598)
+++ trunk/Source/_javascript_Core/API/tests/testapi.mm	2013-03-22 13:35:00 UTC (rev 146599)
@@ -202,6 +202,8 @@
     id nextChild;
     while ((nextChild = [enumerator nextObject]))
         [[TinyDOMNode sharedVirtualMachine] removeManagedReference:nextChild withOwner:self];
+
+    [super dealloc];
 }
 
 - (void)appendChild:(TinyDOMNode *)child

Modified: trunk/Source/_javascript_Core/ChangeLog (146598 => 146599)


--- trunk/Source/_javascript_Core/ChangeLog	2013-03-22 13:27:23 UTC (rev 146598)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-03-22 13:35:00 UTC (rev 146599)
@@ -1,3 +1,18 @@
+2013-03-22  David Kilzer  <[email protected]>
+
+        BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]
+        <http://webkit.org/b/112608>
+
+        Fixes the following build failure:
+
+            Source/_javascript_Core/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
+            }
+            ^
+            1 error generated.
+
+        * API/tests/testapi.mm:
+        (-[TinyDOMNode dealloc]): Call [super dealloc].
+
 2013-03-22  Ryosuke Niwa  <[email protected]>
 
         Leak bots erroneously report JSC::WatchpointSet as leaking
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to