From 456feb3c8ecbf5d2349a747f19e742052ecd9762 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 2 Sep 2009 11:14:18 +0200 Subject: QCache: Variable initialization was missing --- src/corelib/tools/qcache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/tools/qcache.h b/src/corelib/tools/qcache.h index b369e53..8621908 100644 --- a/src/corelib/tools/qcache.h +++ b/src/corelib/tools/qcache.h @@ -131,7 +131,7 @@ private: template inline QCache::QCache(int amaxCost) - : f(0), l(0), mx(amaxCost), total(0) {} + : f(0), l(0), unused(0), mx(amaxCost), total(0) {} template inline void QCache::clear() -- cgit v0.12