aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cpprefactoringchanges.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@digia.com>2014-08-27 13:41:25 +0200
committerNikolai Kosjar <nikolai.kosjar@digia.com>2014-08-29 14:14:37 +0200
commitc8c2aaafdf6180c271cf54576e5c2d5e25281947 (patch)
tree6921b9b57b1de2784763472391e1ca8444c9bb9c /src/plugins/cpptools/cpprefactoringchanges.cpp
parent4a3cc6d2b2eb3e1090b22bb3c04f6933821afa96 (diff)
C++: Fix possible use-after-free of AST.
The CppRefactoringChanges::fileNoEditor takes a Document from the snapshot it has. Although this snapshot is a safe copy, it might have been gotten right after it was updated by indexing. Such a document will still have its AST. If this AST is used by any refactoring action without retaining it, the pointers will be dangling after a short while (specifically: after the locator has extracted all the information). The fileNoEditor method is called by the declDefLinkFinder to search the target document. The snapshot is obtained before, and contains the document for the semantic info. However, the target document will not come from the semantic info, but from the indexer. Change-Id: I212ff41dde6910e94e80552b2c3e5911fe9496ae Task-number: QTCREATORBUG-11262 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpprefactoringchanges.cpp')
-rw-r--r--src/plugins/cpptools/cpprefactoringchanges.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/cpptools/cpprefactoringchanges.cpp b/src/plugins/cpptools/cpprefactoringchanges.cpp
index a07d7a404c..045633077b 100644
--- a/src/plugins/cpptools/cpprefactoringchanges.cpp
+++ b/src/plugins/cpptools/cpprefactoringchanges.cpp
@@ -112,10 +112,6 @@ CppRefactoringFileConstPtr CppRefactoringChanges::fileNoEditor(const QString &fi
CppRefactoringFilePtr result(new CppRefactoringFile(document, fileName));
result->m_data = m_data;
- Document::Ptr cppDocument = data()->m_snapshot.document(fileName);
- if (cppDocument)
- result->setCppDocument(cppDocument);
-
return result;
}