This commit is contained in:
GabsPuNs
2026-06-05 16:05:55 -04:00
parent d6e58df26d
commit 8bea50b1e5
29 changed files with 162 additions and 1670 deletions

View File

@@ -76,7 +76,7 @@ void ByteArrayOutputStream::write(byteArray b, unsigned int offset, unsigned int
buf.resize(newSize);
}
XMemCpy(&buf[count], &b[offset], length);
memcpy(&buf[count], &b[offset], length);
count += length;
}