... Therefore, when returning a DLL-created string or floating-point array, you have the following choices:
- Set a persistent pointer to a dynamically allocated buffer, return the pointer. On the next call to the function (1) check that the pointer is not null, (2) free the resources allocated on the previous call and reset the pointer to null, (3) reuse the pointer for a newly allocated block of memory. ...
I get the following error dialog when I call free:
MSVC++ Debug Library HEAP CORRUPTION DETECTED: after Normal block(#135) at 0x....... CRT detected that the application wrote to memory after end of healp buffer.
Here's my code:
FP * g_FP;
extern "C" FP * __stdcall xllFill(long rows, long cols) {
if (g_FP != NULL) {
free(g_FP);
g_FP = NULL;
}
g_FP = (FP *)malloc(rows * cols * sizeof(double) + 2 * sizeof(unsigned short int));
for (int i = 0; i < rows * cols; i++) {
(*g_FP).data[i] = (double)i;
}
(*g_FP).rows = (unsigned short int)rows;
(*g_FP).cols = (unsigned short int)cols;
return g_FP;
}
I'm a bit rusty on C++ but I can't figure for the life of me why this isn't working.
NULLpointers on your system may not necessarily have byte value "0" (even though we writevoid* ptr = 0, that0is not necessarily the value on disk). You should writeFP* g_FP = 0;orFP* g_FP = NULL;. – Lightness Races in Orbit Oct 10 '11 at 11:53Tis a scalar type (3.9), the object is set to the value 0 (zero), taken as an integral constant expression, converted toT" - I think that this means that zero-initialization is perfectly equivalent toFP* g_FP = (FP*)0;, so your consideration about the actual byte value should not apply here (although I do prefer to explicitly initialize globals anyway). – Matteo Italia Oct 10 '11 at 11:57