I am using vector<char> to send and receive data via socket. In this vector I stored data of different types. Unsigned Integer and Doubles.
To decode the data from vector I am using copy function.
vector<char> myVector = ... smth;
double value = 0.0;
copy(myVector.begin(), myVector.begin() + sizeof(value), &value);
It works with Integer without problem. But...
My problem is, that the compile gives out an error "free(): invalid pointer: 0x00000000006d0e30". I checked, the problem is with the double value, not with the vector. I looked the address of double value it was (0x6d0e38). Why the program tries to access the pointer backwards?
I would be glad, if you can say me, what I am doing wrong. And is it the good way to decode message?
Thank you a lot.
sizeof(double) > sizeof(int). Cannot rely on the endianness of data being the same on receiver and sender end so no, this is not a good design. – Steve Townsend Jun 20 '11 at 21:01myVector.size() <= sizeof(value)just before you computemyVector.begin() + sizeof(value). – Nemo Jun 20 '11 at 21:07