# HG changeset patch # User reimar # Date 1258712671 0 # Node ID 4c4552f547b307b44ca65539b86d28018accfad0 # Parent 5eef60a98c6f6289e7e725268909ceb71843266b Use early return instead of block over whole function. diff -r 5eef60a98c6f -r 4c4552f547b3 subreader.c --- a/subreader.c Fri Nov 20 10:22:57 2009 +0000 +++ b/subreader.c Fri Nov 20 10:24:31 2009 +0000 @@ -1157,7 +1157,8 @@ int l=sub->lines; int char_set_num; fribidi_boolean log2vis; - if(flip_hebrew) { // Please fix the indentation someday + if (!flip_hebrew) + return sub; fribidi_set_mirroring(1); fribidi_set_reorder_nsm(0); @@ -1197,7 +1198,6 @@ free (sub->text[--l]); return ERR; } - } return sub; }