diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c index a2db0196c..08e898346 100644 --- a/src/base/ftobjs.c +++ b/src/base/ftobjs.c @@ -279,11 +279,19 @@ /*************************************************************************/ /* */ /* */ - /* ft_done_stream */ + /* FT_Done_Stream */ /* */ /* */ /* Closes and destroys a stream object. */ /* */ + EXPORT_FUNC + void FT_Done_Stream( FT_Stream stream ) + { + if ( stream->close ) + stream->close( stream ); + } + + static void ft_done_stream( FT_Stream* astream ) { @@ -297,8 +305,6 @@ *astream = 0; } - - /*************************************************************************/ /*************************************************************************/ /*************************************************************************/