From: Thibault Saunier Date: Sat, 10 May 2014 20:09:31 +0000 (+0200) Subject: ges: remove comparison of unsigned inferior to 0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8015359f16322558f9545f28229b1e09c78be2d1;p=platform%2Fupstream%2Fgst-editing-services.git ges: remove comparison of unsigned inferior to 0 COVERITY CID 1139769 --- diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index ae807ad..3540b2d 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -1408,8 +1408,7 @@ ges_timeline_trim_object_simple (GESTimeline * timeline, /* Calculate new values */ position = MIN (position, start + duration); - inpoint = - MAX (0, inpoint + position > start ? inpoint + position - start : 0); + inpoint = inpoint + position > start ? inpoint + position - start : 0; real_dur = _END (element) - position; /* FIXME: Why CLAMP (0, real_dur, max_duration) doesn't work? */