diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-08 15:39:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-08 15:39:25 +0300 |
commit | 3c7ec0569a4fce157e608021133bdc6cac679c10 (patch) | |
tree | 1bb8af393516cc315bcc1ec022766b184fb82d33 /src/animatedsprite.cpp | |
parent | 943c206816027b21e9d658517a0640b92df4763d (diff) | |
download | plus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.gz plus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.bz2 plus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.xz plus-3c7ec0569a4fce157e608021133bdc6cac679c10.zip |
Zero variables after calling decRef().
Diffstat (limited to 'src/animatedsprite.cpp')
-rw-r--r-- | src/animatedsprite.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index 80a2014eb..215fd9ad6 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -72,7 +72,10 @@ AnimatedSprite *AnimatedSprite::load(const std::string &filename, int variant) AnimatedSprite::~AnimatedSprite() { if (mSprite) + { mSprite->decRef(); + mSprite = 0; + } } bool AnimatedSprite::reset() |