fix null pointer access in unused.d

This commit is contained in:
WebFreak001 2022-03-07 19:04:29 +01:00 committed by Jan Jurzitza
parent 1597733f12
commit e027965176
2 changed files with 8 additions and 1 deletions

View File

@ -434,7 +434,8 @@ abstract class UnusedStorageCheck : UnusedIdentifierCheck
// enum name = "abc"; // enum name = "abc";
// __traits(hasMember, S, name); // __traits(hasMember, S, name);
ignoreDeclarations++; ignoreDeclarations++;
traitsExp.templateArgumentList.accept(this); if (traitsExp.templateArgumentList)
traitsExp.templateArgumentList.accept(this);
ignoreDeclarations--; ignoreDeclarations--;
} }

View File

@ -117,6 +117,12 @@ final class UnusedVariableCheck : UnusedStorageCheck
__traits(compiles, { int i = 2; }); __traits(compiles, { int i = 2; });
} }
// segfault with null templateArgumentList
void nullTest()
{
__traits(isPOD);
}
}c, sac); }c, sac);
stderr.writeln("Unittest for UnusedVariableCheck passed."); stderr.writeln("Unittest for UnusedVariableCheck passed.");
} }