gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-22-gd3635dd
Date: Wed, 09 Feb 2011 14:33:26 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  d3635dda7b1a13910c960f76511a221e05cd5d58 (commit)
      from  4c93e1cd5419a1f7281a2352bb10501d9c422c30 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=d3635dda7b1a13910c960f76511a221e05cd5d58


commit d3635dda7b1a13910c960f76511a221e05cd5d58
Author: Sandro Santilli <address@hidden>
Date:   Wed Feb 9 15:26:04 2011 +0100

    Do not instanciate a BitmapFilter: it is unused and left leaking

diff --git a/libcore/asobj/flash/filters/BitmapFilter_as.cpp 
b/libcore/asobj/flash/filters/BitmapFilter_as.cpp
index 4fd8f1f..cc83012 100644
--- a/libcore/asobj/flash/filters/BitmapFilter_as.cpp
+++ b/libcore/asobj/flash/filters/BitmapFilter_as.cpp
@@ -36,17 +36,18 @@ namespace {
  
 /// This may need a reference to its owner as_object
 //
-/// TODO: is BitmapFilter GC collected?
+/// TODO: is BitmapFilter GC collected? Not currently (see libcore/Filters.h)
 class BitmapFilter_as : public Relay
 {
 public:
     BitmapFilter_as()
-        :
-        _filter(new BitmapFilter)
+        //: _filter(new BitmapFilter)
     {}
 
+    // ~BitmapFilter_as() { delete _filter; }
+
 private:
-    BitmapFilter* _filter;
+    //BitmapFilter* _filter;
 };
 
 

-----------------------------------------------------------------------

Summary of changes:
 libcore/asobj/flash/filters/BitmapFilter_as.cpp |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]