From 094c55f74c9ce54e12f374008703fe64288c3ff3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 24 Jan 2020 22:48:05 -0600 Subject: [PATCH] [ox/fs] Remove unnecessary PassthroughFS fstream close (synced from 8037bc95350dd135cece2ae24e9730efa816b220) --- src/ox/fs/filesystem/passthroughfs.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ox/fs/filesystem/passthroughfs.cpp b/src/ox/fs/filesystem/passthroughfs.cpp index f1bf71e7c..0c4f1247d 100644 --- a/src/ox/fs/filesystem/passthroughfs.cpp +++ b/src/ox/fs/filesystem/passthroughfs.cpp @@ -98,7 +98,6 @@ Error PassThroughFS::write(const char *path, void *buffer, uint64_t size, uint8_ return OxError(1); } f.write(static_cast(buffer), size); - f.close(); return OxError(0); }