]> granicus.if.org Git - clang/commit
Fix use-of-invalid-memory found by Valgrind and Windows buildbots.
authorTed Kremenek <kremenek@apple.com>
Sat, 20 Mar 2010 15:45:06 +0000 (15:45 +0000)
committerTed Kremenek <kremenek@apple.com>
Sat, 20 Mar 2010 15:45:06 +0000 (15:45 +0000)
commit6493b8153a56cbff9f89c1a53f04b6af424b383a
tree3d186a3aa48594f22b7ec5e64ec64b4e29634a16
parent84d1e6e443b90275539a4e5b2dd94ae63c5ff19a
Fix use-of-invalid-memory found by Valgrind and Windows buildbots.
We were inserting a value into a std::vector<> while iterating over
it, which could cause the underlying memory to get deallocated
and reallocated.  While not the best solution, use an llvm::ImmutableList
for now as it is safely supports insertions during iteration.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99058 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Checker/BugReporter/BugReporter.h