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/gui/itempopup.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/gui/itempopup.cpp')
-rw-r--r-- | src/gui/itempopup.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index e7def2234..f5117ed5a 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -92,7 +92,10 @@ ItemPopup::~ItemPopup() { Image *image = mIcon->getImage(); if (image) + { image->decRef(); + image = 0; + } } } |