User profile: GrahamZ

User info
User name:GrahamZ
History
Joined:
Number of posts:4
Latest posts:

"Buffer too small" error on resized array
What happened to all the comments that appeared in this thread yesterday? I actually figured out ...

"Buffer too small" error on resized array
[code]strcpy_s(tempBuffer, strlen(ReadBuffer)+1, ReadBuffer);[/code] is another of the variations I'...

"Buffer too small" error on resized array
Because malloc() takes the size in bytes, and I'm creating a char array, multiplying ReadBufferSize ...

"Buffer too small" error on resized array
I'm resizing an array. The resize (doubling the size) appears to work correctly, but when I send mo...