ext/gnomevfs/gstgnomevfssrc.c: This patch removes the RANDOM flag that was incorrectl...
authorWim Taymans <wim@fluendo.com>
Thu, 7 Sep 2006 15:00:08 +0000 (15:00 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 7 Sep 2006 15:00:08 +0000 (15:00 +0000)
Original commit message from CVS:

patch by: Wim Taymans <wim at fluendo dot com>

* 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

ChangeLog
ext/gnomevfs/gstgnomevfssrc.c

index b7d3856..c4ea3aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       patch by: Wim Taymans <wim at fluendo dot com>
+
+       * 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  <tim at centricular dot net>
 
        * tests/check/Makefile.am:
index e05c1fb..33a15f9 100644 (file)
@@ -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;