# HG changeset patch # User William Pitcock # Date 1193486671 18000 # Node ID faba4117b0d02d310af859a3c0d5b7e05656c5d7 # Parent 4eeb4c36867cf2cf1cfb4a7ab13b8ad7075610e4 remove unneeded seeking from vfs_is_streaming(). diff -r 4eeb4c36867c -r faba4117b0d0 src/audacious/vfs.c --- a/src/audacious/vfs.c Sat Oct 27 07:04:14 2007 -0500 +++ b/src/audacious/vfs.c Sat Oct 27 07:04:31 2007 -0500 @@ -475,9 +475,7 @@ if(!file) return FALSE; - curpos = file->base->vfs_ftell_impl(file); size = file->base->vfs_fsize_impl(file); - file->base->vfs_fseek_impl(file, curpos, SEEK_SET); if(size == -1) return TRUE;