Browse Source

Fixes #151

Close a file descriptor that could be leaked
Adam Johnson 13 years ago
parent
commit
7720981324
  1. 1
      Sources/Plasma/PubUtilLib/plGImage/plFont.cpp

1
Sources/Plasma/PubUtilLib/plGImage/plFont.cpp

@ -1913,6 +1913,7 @@ hsBool plFont::LoadFromBDF( const char *path, plBDFConvertCallback *callback )
catch( ... )
{
IClear();
fclose( fp );
return false;
}

Loading…
Cancel
Save