summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-09-15 05:54:15 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-09-15 05:54:15 +0200
commitf0ce88e605b3717d50a7c153aa9b00c002b24805 (patch)
treeec6507fd0c5ddb1b5e2982e33f110922d668d736 /include
parent21daedc6ff6de2966fe350dceb543a752d845a75 (diff)
downloadsqlitexx-f0ce88e605b3717d50a7c153aa9b00c002b24805.tar.gz
sqlitexx-f0ce88e605b3717d50a7c153aa9b00c002b24805.tar.bz2
made leak in test3 more transparent
Diffstat (limited to 'include')
-rw-r--r--include/sqlite3xx/result.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sqlite3xx/result.hpp b/include/sqlite3xx/result.hpp
index 77d1938..62d0ad5 100644
--- a/include/sqlite3xx/result.hpp
+++ b/include/sqlite3xx/result.hpp
@@ -223,7 +223,7 @@ class SQLITEXX_LIBEXPORT result {
} value;
public:
- CachedValue( ) { type = 0; };
+ CachedValue( ) { type = 0; value.s = NULL; };
CachedValue( const CachedValue& v );
~CachedValue( );
CachedValue& operator= ( const CachedValue& v );