Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know if this following code is correct or source of bugs.

In a unmanaged.cpp file:

char *output[256];

extern "C"
void firstfunction(unsigned short id, char **outputtemp, unsigned long *outputsize)
{
    char *content;
    unsigned long contentsize;

    *outputtemp = NULL;
    *outputsize = 0;

    // ...

output[id] = (char *) malloc (sizeof(char) * (contentsize + 1));
    strcpy(output[id], content);

    *output = output[id];
    *outputsize = contentsize;
}

extern "C"
void lastfunction(unsigned short id)
{
    free(output[id]);
    output[id] = NULL;
}

And managed class1.cs and class2.cs files:

[DllImport("unmanaged.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
private static extern void firstfunction(ushort id, ref IntPtr output, ref uint outputsize);
[DllImport("unmanaged.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
private static extern void lastfunction(ushort id);

class MyClass1
{
    static void Main(string[] args)
    {
        IntPtr output = new IntPtr();
        uint outputsize = 0;
        firstfunction(id, ref output, ref outputsize);
        lastfunction(id);
        Debug.WriteLine(Marshal.PtrToStringAnsi(output));
    }
}

class MyClass2
{
    static void Main(string[] args)
    {
        IntPtr output = new IntPtr();
        uint outputsize = 0;
        firstfunction(id, ref output, ref outputsize);
        string result = Marshal.PtrToStringAnsi(output);
        lastfunction(id);
        Debug.WriteLine(result);
    }
}

Is MyClass1 correct? Is MyClass2 correct? None of both?

I have good experience with java programming, but less with c# and c/c++. The c/c++ code is from another teammate.

[EDIT] I tested the code with a loop and the MyClass1 is not correct...

share|improve this question
2  
Should go on Code Review, with the caveat that it might not be specific enough for that site. – millimoose Feb 14 at 14:26
Ok, I did not know. Please goto codereview.stackexchange.com/q/22709/22141 – enguerran Feb 14 at 14:38
1  
Looks okay. Just test it. Call it a million times so you know there's no memory leak. – Hans Passant Feb 14 at 14:57
I smell irony in the @HansPassant's comment... so I test it with a loop and the result is clear: MyClass1 does not work at all as the free(myressource) is called before returning it. – enguerran Feb 14 at 15:19
It might also be possible to use Valgrind on a mixed managed-unmanaged app, although it might not be completely straightforward. (Or Visual Studio might include its own memory debugging tools.) – millimoose Feb 14 at 15:19
show 2 more comments

closed as off topic by millimoose, mbeckish, enguerran, Hans Passant, Graviton Feb 19 at 2:52

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.