[libclang] Don't bind a StringRef to a temporary std::string object.

It may end up pointing at garbage.

Fixes the MSVC debug build. rdar://11703319

llvm-svn: 159377
This commit is contained in:
Argyrios Kyrtzidis 2012-06-28 21:03:08 +00:00
parent 27747b57f9
commit 30a2432682
1 changed files with 1 additions and 2 deletions

View File

@ -369,7 +369,6 @@ static void clang_indexSourceFile_Impl(void *UserData) {
IndexActionCleanup(IndexAction.get());
bool Persistent = requestedToGetTU;
StringRef ResourceFilesPath = CXXIdx->getClangResourcesPath();
bool OnlyLocalDecls = false;
bool PrecompilePreamble = false;
bool CacheCodeCompletionResults = false;
@ -393,7 +392,7 @@ static void clang_indexSourceFile_Impl(void *UserData) {
IndexAction.get(),
Unit,
Persistent,
ResourceFilesPath,
CXXIdx->getClangResourcesPath(),
OnlyLocalDecls,
/*CaptureDiagnostics=*/true,
PrecompilePreamble,