I have this code:
TCHAR *sRes;
sRes = (TCHAR *) calloc(16384, sizeof(TCHAR));
DWORD dwRes = sizeof(sRes);
dwRes is always 8, and of course _tcslen(sRes) is always 0.
I am looking for 16384.
|
feedback
|
|
There is no supported mechanism for obtaining size of a block allocated with malloc or calloc. If you call | |||||
feedback
|
|
In C there is no way to get the size of a memory block with only the base address of the block. But when you created the block, you knew the size: just save it and use it afterwards when you need:
Also, notice I removed the cast from the return value of | |||||||||||||
feedback
|
|
The operating system and the underlying memory allocator implementation keep track of that number, but there is no standard facility to obtain this value in application code.
Your only option is to create a custom struct where you manually keep both the returned pointer and the size which was allocated. | |||
|
feedback
|