ft_new_input_stream(): set the pathname field of the stream to args->pathname. Needed for the Mac fond driver.

ft_done_stream(): free the pathname field, if not null
This commit is contained in:
Just van Rossum 2000-03-02 01:07:50 +00:00
parent ca13392d83
commit d35aea7090
1 changed files with 11 additions and 1 deletions

View File

@ -242,7 +242,14 @@
/* do we have an 8-bit pathname? */
else if ( args->pathname )
{
error = FT_New_Stream( args->pathname, stream );
if ( !error )
{
if ( !ALLOC( stream->pathname.pointer, strlen(args->pathname)+1 ) )
strcpy( stream->pathname.pointer, args->pathname );
}
}
/* do we have a custom stream? */
else if ( args->stream )
@ -280,7 +287,10 @@
if ( stream->close )
stream->close( stream );
if ( stream->pathname.pointer )
FREE( stream->pathname.pointer );
FREE( stream );
*astream = 0;
}