Index: uspace/srv/fs/exfat/exfat_directory.c
===================================================================
--- uspace/srv/fs/exfat/exfat_directory.c	(revision 0bd5ff153314a0cae6e03c4385ca3a3b7508d695)
+++ uspace/srv/fs/exfat/exfat_directory.c	(revision 963ea42b955a0c7735b4ff021460746150ddd0e2)
@@ -187,8 +187,10 @@
 	int rc, i;
 	size_t offset = 0;
+	aoff64_t start_pos = 0;
 	
 	rc = exfat_directory_find(di, EXFAT_DENTRY_FILE, &d);
 	if (rc != EOK)
 		return rc;
+	start_pos = di->pos;
 	*df = d->file;
 
@@ -221,4 +223,5 @@
 		return rc;
 
+	exfat_directory_seek(di, start_pos);
 	return EOK;
 }
