Mercurial > audlegacy
diff src/audacious/input.c @ 2342:f140d0a27093 trunk
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
- correct reporting in buffer_vfs_fread_impl/buffer_vfs_fwrite_impl
| author | nenolod |
|---|---|
| date | Mon, 15 Jan 2007 19:24:54 -0800 |
| parents | d7ccaa59630f |
| children | 0df1a48b8fc4 |
line wrap: on
line diff
--- a/src/audacious/input.c Mon Jan 15 18:33:42 2007 -0800 +++ b/src/audacious/input.c Mon Jan 15 19:24:54 2007 -0800 @@ -434,7 +434,7 @@ if (!ip || !input_is_enabled(ip->filename)) continue; - vfs_fseek(fd, 0, SEEK_SET); + vfs_rewind(fd); if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE)
