coverity#707667 Uninitialized pointer field

Change-Id: Ia8024e1bff86d6b9e18dc60f81bd28e4b8a590af
This commit is contained in:
Caolán McNamara
2014-04-25 15:04:22 +01:00
parent dc21c527c5
commit e56ff47c65

View File

@@ -93,6 +93,11 @@ public:
snippets, after the vtable itself.</p>
*/
Block * blocks;
Vtables()
: count(0)
, blocks(NULL)
{
}
};
VtableFactory();