--- linuxsampler/trunk/src/scriptvm/common.h 2017/05/29 22:42:46 3252 +++ 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.