Fix crash by returning early from finalCheck() if there is no tree to process.

This commit is contained in:
John Kessenich 2016-11-27 17:32:19 -07:00
parent 5307eb2d1b
commit 1c98904014
2 changed files with 4 additions and 1 deletions

View file

@ -377,6 +377,9 @@ void TIntermediate::mergeErrorCheck(TInfoSink& infoSink, const TIntermSymbol& sy
//
void TIntermediate::finalCheck(TInfoSink& infoSink)
{
if (getTreeRoot() == nullptr)
return;
if (numEntryPoints < 1) {
if (source == EShSourceGlsl)
error(infoSink, "Missing entry point: Each stage requires one entry point");