diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-24 00:38:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-24 00:38:44 +0300 |
commit | d2c42029b98c665725768b891aa877eb3267664f (patch) | |
tree | b232b9a20e45ecb4e7ec2133d7806669054708a6 /src/resources/imageloader.cpp | |
parent | fe39570810969993f51a0ff6045d0a5d4397a5e5 (diff) | |
download | plus-d2c42029b98c665725768b891aa877eb3267664f.tar.gz plus-d2c42029b98c665725768b891aa877eb3267664f.tar.bz2 plus-d2c42029b98c665725768b891aa877eb3267664f.tar.xz plus-d2c42029b98c665725768b891aa877eb3267664f.zip |
Add simple memory leak detector.
Can be enabled by configure option -enable-memdebug=yes.
Known issue: not all memory allocations hooked with it.
Diffstat (limited to 'src/resources/imageloader.cpp')
-rw-r--r-- | src/resources/imageloader.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/imageloader.cpp b/src/resources/imageloader.cpp index d0c82c09f..fa5d0eea1 100644 --- a/src/resources/imageloader.cpp +++ b/src/resources/imageloader.cpp @@ -31,6 +31,12 @@ #include <cassert> +#include "debug.h" + +#ifdef free +#undef free +#endif + ProxyImage::ProxyImage(SDL_Surface *s): mImage(NULL), mSDLImage(s) { |