englebass pushed a commit to branch master.

http://git.enlightenment.org/core/evas_generic_loaders.git/commit/?id=ee3ed90722e1f481f9c43aa80411f40d9373b96d

commit ee3ed90722e1f481f9c43aa80411f40d9373b96d
Author: Sebastian Dransfeld <[email protected]>
Date:   Tue Oct 28 10:12:40 2014 +0100

    xcf: Remove dead code
    
    We already make sure amount <= 16 two lines above, so no need to check
    again.
    
    Fixes CID 63741, CID 63742 and CID 63743
---
 src/bin/xcf/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bin/xcf/main.c b/src/bin/xcf/main.c
index 70ade8c..48f2751 100644
--- a/src/bin/xcf/main.c
+++ b/src/bin/xcf/main.c
@@ -622,7 +622,7 @@ xcf_load_image_props(void)
                     {
                        amount = (16 < prop_size ? 16 : prop_size);
                        image->cp += xcf_read_int8(image->file, buf, amount);
-                       prop_size -= (16 < amount ? 16 : amount);
+                       prop_size -= amount;
                     }
                }
              break;
@@ -735,7 +735,7 @@ xcf_load_layer_props(Layer *layer)
                     {
                        amount = (16 < prop_size ? 16 : prop_size);
                        image->cp += xcf_read_int8 (image->file, buf, amount);
-                       prop_size -= (16 < amount ? 16 : amount);
+                       prop_size -= amount;
                     }
                }
              break;
@@ -1005,7 +1005,7 @@ xcf_load_channel_props(Layer *layer)
                     {
                        amount = (16 < prop_size ? 16 : prop_size);
                        image->cp += xcf_read_int8(image->file, buf, amount);
-                       prop_size -= (16 < amount ? 16 : amount);
+                       prop_size -= amount;
                     }
                }
              break;

-- 


Reply via email to