From 2dd2e99cabd70b4375cfae97771d340591956024 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 28 May 2003 19:03:12 +0000 Subject: the _encbyte code was evil, because it modified the memory passed to write(); worse, though, it incremented ptr2, which then was later passed to fwrite - hence if used to write something while _encbyte != 0, write() resulted in wrong data being written svn-id: r8055 --- common/file.cpp | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'common/file.cpp') diff --git a/common/file.cpp b/common/file.cpp index 0b9dbbef68..011e167573 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -266,9 +266,9 @@ uint32 File::readUint32BE() { return (b << 16) | a; } -uint32 File::write(void *ptr, uint32 len) { - byte *ptr2 = (byte *)ptr; - +uint32 File::write(const void *ptr, uint32 len) { + byte *tmp = 0; + if (_handle == NULL) { error("File is not open!"); return 0; @@ -281,17 +281,22 @@ uint32 File::write(void *ptr, uint32 len) { // Maybe FIXME: while it's efficient to do the encoding here, // it not really nice for a write function to modify its input. // Maybe we should work on a copy here... - uint32 t_size = len; - do { - *ptr2++ ^= _encbyte; - } while (--t_size); + tmp = (byte *)malloc(len); + for (uint32 i = 0; i < len; i ++) { + tmp[i] = ((const byte *)ptr)[i] ^ _encbyte; + } + ptr = tmp; } - if ((uint32)fwrite(ptr2, 1, len, _handle) != len) { + if ((uint32)fwrite(ptr, 1, len, _handle) != len) { clearerr(_handle); _ioFailed = true; } + if (_encbyte != 0) { + free(tmp); + } + return len; } -- cgit v1.2.3