From bc5bcecfd2424394130d46f9f2e9f0ef52299599 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Fri, 13 Jul 2012 17:52:43 -0400 Subject: [PATCH] Revert the last commit 45337b07. --- src/base/ftstroke.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/base/ftstroke.c b/src/base/ftstroke.c index f488e03d1..b0b77c0a3 100644 --- a/src/base/ftstroke.c +++ b/src/base/ftstroke.c @@ -789,6 +789,7 @@ FT_Stroker_New( FT_Library library, FT_Stroker *astroker ) { + FT_Error error; /* assigned in FT_NEW */ FT_Memory memory; FT_Stroker stroker = NULL; @@ -808,7 +809,7 @@ *astroker = stroker; - return FT_Err_Ok; + return error; }