Closed irov closed 2 years ago
std::array<char, 65> writablePath = {'\0'}; snprintf(writablePath.data(), writablePath.size(), "%s", writablePath_ ? writablePath_ : "");
please add platform dependens define this size like MAX_PATH (windows 260, unix base 1024)
thanks
Thanks for reporting this. This should be fixed now
std::array<char, 65> writablePath = {'\0'}; snprintf(writablePath.data(), writablePath.size(), "%s", writablePath_ ? writablePath_ : "");
please add platform dependens define this size like MAX_PATH (windows 260, unix base 1024)
thanks