mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-29 13:20:35 +00:00
Use 32767 characters for log path
This commit is contained in:
parent
3eb2b32123
commit
f400116bcd
@ -136,7 +136,7 @@ namespace Crash
|
||||
|
||||
memset(mShm->mStartup.mLogFilePath, 0, sizeof(mShm->mStartup.mLogFilePath));
|
||||
int length = crashLogPath.length();
|
||||
if (length > MAX_PATH) length = MAX_PATH;
|
||||
if (length > MAX_LONG_PATH) length = MAX_LONG_PATH;
|
||||
strncpy(mShm->mStartup.mLogFilePath, crashLogPath.c_str(), length);
|
||||
mShm->mStartup.mLogFilePath[length] = '\0';
|
||||
|
||||
|
@ -9,6 +9,7 @@ namespace Crash
|
||||
{
|
||||
|
||||
// Used to communicate between the app and the monitor, fields are is overwritten with each event.
|
||||
static constexpr const int MAX_LONG_PATH = 0x7fff;
|
||||
|
||||
struct CrashSHM
|
||||
{
|
||||
@ -28,7 +29,7 @@ namespace Crash
|
||||
HANDLE mSignalApp;
|
||||
HANDLE mSignalMonitor;
|
||||
HANDLE mShmMutex;
|
||||
char mLogFilePath[MAX_PATH + 1];
|
||||
char mLogFilePath[MAX_LONG_PATH];
|
||||
} mStartup;
|
||||
|
||||
struct Crashed
|
||||
|
Loading…
x
Reference in New Issue
Block a user