From: Stefan Kost Date: Fri, 20 May 2011 10:32:31 +0000 (+0300) Subject: rmdemux: target is unsigned and can't be < 0 X-Git-Tag: 1.19.3~505^2~818^2~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a184490e6c42736aee0316719f7b4e9d4dc1f997;p=platform%2Fupstream%2Fgstreamer.git rmdemux: target is unsigned and can't be < 0 --- diff --git a/gst/realmedia/rmdemux.c b/gst/realmedia/rmdemux.c index e6b8ec6..56c1f44 100644 --- a/gst/realmedia/rmdemux.c +++ b/gst/realmedia/rmdemux.c @@ -400,9 +400,6 @@ find_seek_offset_bytes (GstRMDemux * rmdemux, guint target) GSList *cur; gboolean ret = FALSE; - if (target < 0) - return FALSE; - for (cur = rmdemux->streams; cur; cur = cur->next) { GstRMDemuxStream *stream = cur->data;