[clang-tidy] Fix a use-after-free.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@245215 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexander Kornienko 2015-08-17 11:27:11 +00:00
Родитель deefe2ca66
Коммит acc884669b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -272,7 +272,7 @@ static int clangTidyMain(int argc, const char **argv) {
StringRef FileName("dummy");
auto PathList = OptionsParser.getSourcePathList();
if (!PathList.empty()) {
FileName = OptionsParser.getSourcePathList().front();
FileName = PathList.front();
}
ClangTidyOptions EffectiveOptions = OptionsProvider->getOptions(FileName);
std::vector<std::string> EnabledChecks = getCheckNames(EffectiveOptions);