Minor formatting.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index f66273f..0f6fd0a 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -2215,7 +2215,8 @@
if ( FT_QALLOC( sfnt_data, rlen ) )
return error;
error = FT_Stream_Read( stream, (FT_Byte *)sfnt_data, (FT_ULong)rlen );
- if ( error ) {
+ if ( error )
+ {
FT_FREE( sfnt_data );
goto Exit;
}
diff --git a/src/truetype/ttgxvar.c b/src/truetype/ttgxvar.c
index 65fc701..6cb2cc9 100644
--- a/src/truetype/ttgxvar.c
+++ b/src/truetype/ttgxvar.c
@@ -1160,7 +1160,8 @@
outerIndex,
innerIndex );
- if ( delta ) {
+ if ( delta )
+ {
FT_TRACE5(( "%s value %d adjusted by %d unit%s (%s)\n",
vertical ? "vertical height" : "horizontal width",
*avalue,
diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c
index e16565c..2ddeee3 100644
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -8570,7 +8570,8 @@
/* increment instruction counter and check if we didn't */
/* run this program for too long (e.g. infinite loops). */
- if ( ++ins_counter > TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES ) {
+ if ( ++ins_counter > TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES )
+ {
exc->error = FT_THROW( Execution_Too_Long );
goto LErrorLabel_;
}