Fix possible NULL dereference in createExtrudedMesh

This commit is contained in:
Kahrl 2013-07-06 06:16:51 +02:00
parent 922a30ee47
commit 3607fae75a
1 changed files with 8 additions and 6 deletions

View File

@ -280,15 +280,17 @@ scene::IAnimatedMesh* createExtrudedMesh(video::ITexture *texture,
// img1 is in the texture's color format, convert to 8-bit ARGB
video::IImage *img2 = driver->createImage(video::ECF_A8R8G8B8, size);
if (img2 != NULL)
if (img2 == NULL)
{
img1->copyTo(img2);
mesh = extrudeARGB(size.Width, size.Height, (u8*) img2->lock());
img2->unlock();
img2->drop();
img1->drop();
return NULL;
}
img1->copyTo(img2);
img1->drop();
mesh = extrudeARGB(size.Width, size.Height, (u8*) img2->lock());
img2->unlock();
img2->drop();
}
// Set default material