--- linuxsampler/trunk/src/scriptvm/common.h 2017/05/26 18:30:42 3221 +++ linuxsampler/trunk/src/scriptvm/common.h 2017/05/30 12:08:45 3253 @@ -644,8 +644,9 @@ struct VMInt8Array { int8_t* data; int size; + bool readonly; ///< Whether the array data may be modified or just be read. - VMInt8Array() : data(NULL), size(0) {} + VMInt8Array() : data(NULL), size(0), readonly(false) {} }; /** @brief Virtual machine script variable.