From 371e1584f15820738a44a6c7f898e96a31a254c8 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Fri, 5 Mar 2021 00:32:01 -0500 Subject: [PATCH] Fix two small bugs in LLFileSystem::write --- indra/llfilesystem/llfilesystem.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/indra/llfilesystem/llfilesystem.cpp b/indra/llfilesystem/llfilesystem.cpp index a472e6ac703..199d784952c 100644 --- a/indra/llfilesystem/llfilesystem.cpp +++ b/indra/llfilesystem/llfilesystem.cpp @@ -172,7 +172,12 @@ BOOL LLFileSystem::write(const U8* buffer, S32 bytes) LLUniqueFile filep = LLFile::fopen(mFilePath, TEXT("ab")); if (filep) { - fwrite((const void*)buffer, bytes, 1, filep); + fseek(filep, 0L, SEEK_END); + long fsize = ftell(filep); + + fwrite((const void*)buffer, 1, bytes, filep); + + mPosition = fsize + bytes; success = TRUE; } @@ -182,9 +187,9 @@ BOOL LLFileSystem::write(const U8* buffer, S32 bytes) LLUniqueFile filep = LLFile::fopen(mFilePath, TEXT("wb")); if (filep) { - fwrite((const void*)buffer, bytes, 1, filep); + fwrite((const void*)buffer, 1, bytes, filep); - mPosition += bytes; + mPosition = bytes; success = TRUE; } -- GitLab