1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-24 18:48:01 +02:00

Changed GrowUnitialized to NoShow

This commit is contained in:
Brian Fiete 2024-09-19 12:43:36 -04:00
parent b34a14502d
commit 861913d591
5 changed files with 5 additions and 5 deletions

View file

@ -128,7 +128,7 @@ namespace CURL
int byteCount = size * count;
if (byteCount > 0)
{
Internal.MemCpy(transfer.mData.GrowUnitialized(byteCount), dataPtr, byteCount);
Internal.MemCpy(transfer.mData.GrowUninitialized(byteCount), dataPtr, byteCount);
}
return count;
}