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/resources/image.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/resources/image.cpp')
-rw-r--r-- | src/resources/image.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/image.cpp b/src/resources/image.cpp index aa5c33488..4a89ae636 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -828,7 +828,10 @@ SubImage::~SubImage() mGLImage = 0; #endif if (mParent) + { mParent->decRef(); + mParent = 0; + } } Image *SubImage::getSubImage(int x, int y, int w, int h) |