This commit is contained in:
GabsPuNs
2026-06-05 16:05:55 -04:00
parent 77ad7e0e90
commit 22a1aa3a74
29 changed files with 160 additions and 1668 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;
}