Fix use of uninitialized variable.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58663 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-11-04 00:22:12 +00:00
Родитель 3c1847f82a
Коммит 655aba727e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1164,7 +1164,7 @@ if (defined $OutputFormat) {
# Run the build.
my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd);
if ($OutputFormat eq "plist") {
if (defined $OutputFormat and $OutputFormat eq "plist") {
Diag "Analysis run complete.\n";
Diag "Analysis results (plist files) deposited in '$HtmlDir'\n";
}