summaryrefslogtreecommitdiff
path: root/src/item.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-08 15:39:25 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-08 15:39:25 +0300
commit3c7ec0569a4fce157e608021133bdc6cac679c10 (patch)
tree1bb8af393516cc315bcc1ec022766b184fb82d33 /src/item.cpp
parent943c206816027b21e9d658517a0640b92df4763d (diff)
downloadplus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.gz
plus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.bz2
plus-3c7ec0569a4fce157e608021133bdc6cac679c10.tar.xz
plus-3c7ec0569a4fce157e608021133bdc6cac679c10.zip
Zero variables after calling decRef().
Diffstat (limited to 'src/item.cpp')
-rw-r--r--src/item.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/item.cpp b/src/item.cpp
index e59d0c334..f74d0e837 100644
--- a/src/item.cpp
+++ b/src/item.cpp
@@ -48,7 +48,10 @@ Item::Item(int id, int quantity, int refine, unsigned char color,
Item::~Item()
{
if (mImage)
+ {
mImage->decRef();
+ mImage = 0;
+ }
}
void Item::setId(int id, unsigned char color)