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/map.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/map.cpp')
-rw-r--r-- | src/map.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map.cpp b/src/map.cpp index 69963b354..2c8dc90e2 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -1743,7 +1743,10 @@ MapItem::MapItem(int type, std::string comment, int x, int y): MapItem::~MapItem() { if (mImage) + { mImage->decRef(); + mImage = 0; + } } void MapItem::setType(int type) |