mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-20 03:50:08 +00:00
engine: common: imagelib: img_png.c: add a missing return statement.
This commit is contained in:
parent
49445f0663
commit
01e2ea24da
@ -204,6 +204,7 @@ qboolean Image_LoadPNG( const char *name, const byte *buffer, fs_offset_t filesi
|
|||||||
{
|
{
|
||||||
Con_DPrintf( S_ERROR "Image_LoadPNG: IEND chunk has wrong size (%s)\n", name );
|
Con_DPrintf( S_ERROR "Image_LoadPNG: IEND chunk has wrong size (%s)\n", name );
|
||||||
Mem_Free( idat_buf );
|
Mem_Free( idat_buf );
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( oldsize == 0 )
|
if( oldsize == 0 )
|
||||||
@ -414,9 +415,11 @@ qboolean Image_SavePNG( const char *name, rgbdata_t *pix )
|
|||||||
if( FS_FileExists( name, false ) && !Image_CheckFlag( IL_ALLOW_OVERWRITE ))
|
if( FS_FileExists( name, false ) && !Image_CheckFlag( IL_ALLOW_OVERWRITE ))
|
||||||
return false; // already existed
|
return false; // already existed
|
||||||
|
|
||||||
|
// bogus parameter check
|
||||||
if( !pix->buffer )
|
if( !pix->buffer )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// get image description
|
||||||
switch( pix->type )
|
switch( pix->type )
|
||||||
{
|
{
|
||||||
case PF_RGB_24:
|
case PF_RGB_24:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user