Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 3.3.0-beta1, Qt Creator 4.2.2, Qt Creator 4.3.0-beta1
Description
See one ctor of GenericProposal:
GenericProposal::GenericProposal(int cursorPos, const QList<AssistProposalItemInterface *> &items) : IAssistProposal(cursorPos) , m_model(new GenericProposalModel) { m_model->loadContent(items); }
This allocates a new GenericProposalModel but does not delete it:
GenericProposal::~GenericProposal() {}
Some calling code seems to take care of deleting the model, other doesn't.
You should make sure that m_model is always deleted properly.
Attachments
Issue Links
- relates to
-
QTCREATORBUG-18326 Memory leak in QtCreator 4.3.0
-
- Closed
-