Revert the last commit 45337b07.

This commit is contained in:
Alexei Podtelezhnikov 2012-07-13 17:52:43 -04:00
parent 45337b07a7
commit bc5bcecfd2
1 changed files with 2 additions and 1 deletions

View File

@ -789,6 +789,7 @@
FT_Stroker_New( FT_Library library, FT_Stroker_New( FT_Library library,
FT_Stroker *astroker ) FT_Stroker *astroker )
{ {
FT_Error error; /* assigned in FT_NEW */
FT_Memory memory; FT_Memory memory;
FT_Stroker stroker = NULL; FT_Stroker stroker = NULL;
@ -808,7 +809,7 @@
*astroker = stroker; *astroker = stroker;
return FT_Err_Ok; return error;
} }