From: ehofman Date: Thu, 13 Jan 2005 18:05:46 +0000 (+0000) Subject: Fix a crash situation. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=da6e1b31ea969797810b45fd160a5e88b18ecc90;p=simgear.git Fix a crash situation. --- diff --git a/simgear/screen/texture.cxx b/simgear/screen/texture.cxx index dba9449f..f2062d9e 100644 --- a/simgear/screen/texture.cxx +++ b/simgear/screen/texture.cxx @@ -533,6 +533,7 @@ SGTexture::ImageOpen(const char *fileName) } image = new SGTexture::ImageRec; + memset(image, 0, sizeof(SGTexture::ImageRec)); if (image == 0) { errstr = OUT_OF_MEMORY; return 0; @@ -602,6 +603,7 @@ SGTexture::RawImageOpen(const char *fileName) } image = new SGTexture::ImageRec; + memset(image, 0, sizeof(SGTexture::ImageRec)); if (image == 0) { errstr = OUT_OF_MEMORY; return 0; @@ -648,6 +650,7 @@ SGTexture::ImageWriteOpen(const char *fileName) } image = new SGTexture::ImageRec; + memset(image, 0, sizeof(SGTexture::ImageRec)); if (image == 0) { errstr = OUT_OF_MEMORY; return 0;