Ply-Importer: Fix vulnerability (#5739)

This commit is contained in:
Kim Kulling
2024-08-30 19:43:39 +02:00
committed by GitHub
parent edaf87f186
commit 1e09642382
3 changed files with 40 additions and 0 deletions

View File

@@ -203,3 +203,9 @@ TEST_F(utPLYImportExport, parseInvalid) {
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/invalid/crash-30d6d0f7c529b3b66b4131700b7a4580cd7082df.ply", 0);
EXPECT_EQ(nullptr, scene);
}
TEST_F(utPLYImportExport, payload_JVN42386607) {
Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/PLY/payload_JVN42386607", 0);
EXPECT_EQ(nullptr, scene);
}