summaryrefslogtreecommitdiff
path: root/vfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'vfs.c')
-rw-r--r--vfs.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/vfs.c b/vfs.c
index 2c038fac..23b1628d 100644
--- a/vfs.c
+++ b/vfs.c
@@ -99,3 +99,10 @@ vfs_get_content_genre (DB_FILE *stream) {
}
return NULL;
}
+
+void
+vfs_fstop (DB_FILE *stream) {
+ if (stream->vfs->stop) {
+ stream->vfs->stop (stream);
+ }
+}