Skip to content

Fix of memory alignment issue.

Rafal Babski requested to merge memory-alignment-fix into master

The buffers used when Remote Interface is called with Encoding NATIVE, (for functions Decode_NATIVE_* and Encode_NATIVE_*) should have the same alignment as parameter type. Instead of using static char array, the buffer is allocated as a variable with parameter type, so the compiler will guarantee valid memory alignment.

Merge request reports