Add a null check to the generator target accessor.

This commit is contained in:
Stephen Kelly 2012-10-10 21:29:57 +02:00
parent 1da77bf1ee
commit aa29e64d77
1 changed files with 5 additions and 2 deletions

View File

@ -4061,8 +4061,11 @@ bool cmMakefile::IsAlias(const char *name)
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
cmGeneratorTarget* cmMakefile::FindGeneratorTargetToUse(const char* name) cmGeneratorTarget* cmMakefile::FindGeneratorTargetToUse(const char* name)
{ {
cmTarget *t = this->FindTargetToUse(name); if (cmTarget *t = this->FindTargetToUse(name))
return this->LocalGenerator->GetGlobalGenerator()->GetGeneratorTarget(t); {
return this->LocalGenerator->GetGlobalGenerator()->GetGeneratorTarget(t);
}
return 0;
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------