forked from minhngoc25a/freetype2
* src/base/ftinit.c (FT_Set_Default_Properties): Fix crash.
Terminate loop at end of environment.
This commit is contained in:
parent
c949ab0757
commit
711b593e4b
|
@ -1,3 +1,9 @@
|
|||
2019-06-07 Philip Race <philip.race@oracle.com>
|
||||
|
||||
* src/base/ftinit.c (FT_Set_Default_Properties): Fix crash.
|
||||
|
||||
Terminate loop at end of environment.
|
||||
|
||||
2019-05-31 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||
|
||||
Solidify VC2005 builds.
|
||||
|
|
|
@ -176,6 +176,9 @@
|
|||
module_name,
|
||||
property_name,
|
||||
property_value );
|
||||
|
||||
if ( !*p )
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue