forked from minhngoc25a/freetype2
* src/base/ftbdf.c (FT_Get_BDF_Property): Check for valid
`get_interface'.
This commit is contained in:
parent
a3d2d66a02
commit
dae373bcbb
|
@ -1,3 +1,8 @@
|
|||
2003-04-23 Joe Marcus Clarke <marcus@FreeBSD.org>
|
||||
|
||||
* src/base/ftbdf.c (FT_Get_BDF_Property): Check for valid
|
||||
`get_interface'.
|
||||
|
||||
2003-04-23 Paul Miller <paulm@profoundeffects.com>
|
||||
|
||||
* src/base/ftmac.c (parse_fond): Fix handling of style names.
|
||||
|
|
|
@ -90,11 +90,15 @@
|
|||
BDF_GetPropertyFunc func;
|
||||
|
||||
|
||||
func = (BDF_GetPropertyFunc)driver->root.clazz->get_interface(
|
||||
FT_MODULE( driver ), "get_bdf_property" );
|
||||
if ( func )
|
||||
error = func( face, prop_name, aproperty );
|
||||
if ( driver->root.clazz->get_interface )
|
||||
{
|
||||
func = (BDF_GetPropertyFunc)driver->root.clazz->get_interface(
|
||||
FT_MODULE( driver ), "get_bdf_property" );
|
||||
if ( func )
|
||||
error = func( face, prop_name, aproperty );
|
||||
}
|
||||
}
|
||||
|
||||
return error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue