summaryrefslogtreecommitdiff
path: root/src/base/ftstroke.c
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2012-07-13 17:52:43 -0400
committerAlexei Podtelezhnikov <apodtele@gmail.com>2012-07-13 17:52:43 -0400
commitbc5bcecfd2424394130d46f9f2e9f0ef52299599 (patch)
treefafbdf9599e02e42a27661b8287a8ebc172cd495 /src/base/ftstroke.c
parent45337b07a7537e6c6bce91799ff05895f381cc21 (diff)
downloadfreetype2-bc5bcecfd2424394130d46f9f2e9f0ef52299599.tar.gz
Revert the last commit 45337b07.
Diffstat (limited to 'src/base/ftstroke.c')
-rw-r--r--src/base/ftstroke.c3
1 files changed, 2 insertions, 1 deletions
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;
}