|
On first examination, I'd guess it has to do with the thunking function, Java_ionic_Msmq_Queue_nativeSendBytes .'
For one thing: this function does strlen() calls and stores them in an int, which I think is wrong. It needs to be stored into a size_t.
There may be other problems in that function, too. You should have seen a warning during the 64-bit compile of this code, for this problem. You should see warnings if there are any other problems, too.
Maybe go over your compile output again.
As I said, I never compiled this on 64-bit, so I don't know the answer here.
|