evas/evas_op_sub_main: Remove superfluous if branch.
authorStefan Schmidt <stefan@osg.samsung.com>
Tue, 9 Jun 2015 07:56:18 +0000 (09:56 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Tue, 9 Jun 2015 08:38:40 +0000 (10:38 +0200)
We do the same in both branches: return func.

CID: 1267476, 1267477, 1267479, 1267489

src/lib/evas/common/evas_op_sub_main_.c

index cd26e91..c6cbe07 100644 (file)
@@ -137,7 +137,6 @@ sub_gfx_span_func_cpu(int s, int m, int c, int d)
 #endif
    cpu = CPU_C;
    func = op_sub_span_funcs[s][m][c][d][cpu];
-   if (func) return func;
    return func;
 }
 
@@ -230,7 +229,6 @@ sub_gfx_pt_func_cpu(int s, int m, int c, int d)
 #endif
    cpu = CPU_C;
    func = op_sub_pt_funcs[s][m][c][d][cpu];
-   if (func) return func;
    return func;
 }
 
@@ -361,7 +359,6 @@ sub_rel_gfx_span_func_cpu(int s, int m, int c, int d)
 #endif
    cpu = CPU_C;
    func = op_sub_rel_span_funcs[s][m][c][d][cpu];
-   if (func) return func;
    return func;
 }
 
@@ -454,7 +451,6 @@ sub_rel_gfx_pt_func_cpu(int s, int m, int c, int d)
 #endif
    cpu = CPU_C;
    func = op_sub_rel_pt_funcs[s][m][c][d][cpu];
-   if (func) return func;
    return func;
 }