[analyzer] Plist diagnostics: Fix a case where we fail to close an XML tag.

If the current path diagnostic does /not/ have files associated with it, we
were simply skipping on to the next diagnostic with 'continue'. But that
also skipped the close tag for the diagnostic's <dict> node.

Part of fixing our internal analyzer buildbot.

llvm-svn: 162939
This commit is contained in:
Jordan Rose 2012-08-30 20:43:09 +00:00
parent 73e306e548
commit 03fac27bab
1 changed files with 2 additions and 3 deletions

View File

@ -500,8 +500,6 @@ void PlistDiagnostics::FlushDiagnosticsImpl(
if (!filesMade->empty()) {
StringRef lastName;
PDFileEntry::ConsumerFiles *files = filesMade->getFiles(*D);
if (!files)
continue;
for (PDFileEntry::ConsumerFiles::const_iterator CI = files->begin(),
CE = files->end(); CI != CE; ++CI) {
StringRef newName = CI->first;
@ -515,6 +513,7 @@ void PlistDiagnostics::FlushDiagnosticsImpl(
}
o << " <string>" << CI->second << "</string>\n";
}
if (!lastName.empty())
o << " </array>\n";
}