From: Wim Taymans Date: Thu, 7 Sep 2006 15:00:08 +0000 (+0000) Subject: ext/gnomevfs/gstgnomevfssrc.c: This patch removes the RANDOM flag that was incorrectl... X-Git-Tag: 1.19.3~511^2~11631 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a66ee4d6da4e709b56eb82726bd740a55b242a5c;p=platform%2Fupstream%2Fgstreamer.git ext/gnomevfs/gstgnomevfssrc.c: This patch removes the RANDOM flag that was incorrectly introduced with revision 1.91.... Original commit message from CVS: patch by: Wim Taymans * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start): This patch removes the RANDOM flag that was incorrectly introduced with revision 1.91. Fixes #354590 --- diff --git a/ChangeLog b/ChangeLog index b7d385615a..c4ea3aa6c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-09-07 Thomas Vander Stichele + + patch by: Wim Taymans + + * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start): + This patch removes the RANDOM flag that was incorrectly introduced with + revision 1.91. Fixes #354590 + 2006-09-05 Tim-Philipp Müller * tests/check/Makefile.am: diff --git a/ext/gnomevfs/gstgnomevfssrc.c b/ext/gnomevfs/gstgnomevfssrc.c index e05c1fb505..33a15f9af9 100644 --- a/ext/gnomevfs/gstgnomevfssrc.c +++ b/ext/gnomevfs/gstgnomevfssrc.c @@ -789,7 +789,7 @@ gst_gnome_vfs_src_start (GstBaseSrc * basesrc) GnomeVFSOpenMode mode; /* this can block... */ - mode = GNOME_VFS_OPEN_READ | GNOME_VFS_OPEN_RANDOM; + mode = GNOME_VFS_OPEN_READ; res = gnome_vfs_open_uri (&src->handle, src->uri, mode); if (res != GNOME_VFS_OK) goto open_failed;