* src/base/ftbdf.c (FT_Get_BDF_Property): Check for valid

`get_interface'.
BRANCH-2-1-5
Werner Lemberg 22 years ago
parent a3d2d66a02
commit dae373bcbb
  1. 5
      ChangeLog
  2. 12
      src/base/ftbdf.c

@ -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…
Cancel
Save