Commit bc5bcecfd2424394130d46f9f2e9f0ef52299599

Alexei Podtelezhnikov 2012-07-13T17:52:43

Revert the last commit 45337b07.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/base/ftstroke.c b/src/base/ftstroke.c
index f488e03..b0b77c0 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;
   }