Skip to content
Snippets Groups Projects
Commit 0ee4e3ab authored by Emmanuel Lepage Vallée's avatar Emmanuel Lepage Vallée Committed by Stepan Salenikovich
Browse files

lastusednumber: Fix uninitialized pointers


Change-Id: I59a0dd2d74c10479c97292919736f2db5bdcfab2
Reviewed-by: default avatarStepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
parent ce092ad6
Branches
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ public:
ChainedContactMethod* m_pFirstNode;
QHash<ContactMethod*,ChainedContactMethod*> m_hNumbers;
bool m_IsValid;
ChainedContactMethod* m_lLastNumbers[MAX_ITEM];
ChainedContactMethod* m_lLastNumbers[MAX_ITEM] {};
};
LastUsedNumberModelPrivate::LastUsedNumberModelPrivate():m_pFirstNode(nullptr),m_IsValid(false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment