mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Added size check to injected files instead of attempting to load them all into memory
This commit is contained in:
parent
e30c2b5fa8
commit
684b7e2e6a
|
@ -1591,8 +1591,11 @@ void FileData::launchGame()
|
|||
std::string arguments;
|
||||
std::ifstream injectFileStream;
|
||||
injectFileStream.open(injectFile);
|
||||
for (std::string line; getline(injectFileStream, line);)
|
||||
for (std::string line; getline(injectFileStream, line);) {
|
||||
arguments += line;
|
||||
if (arguments.size() > 4096)
|
||||
break;
|
||||
}
|
||||
injectFileStream.close();
|
||||
|
||||
if (arguments.empty()) {
|
||||
|
@ -1602,8 +1605,7 @@ void FileData::launchGame()
|
|||
}
|
||||
else if (arguments.size() > 4096) {
|
||||
LOG(LogWarning) << "FileData::launchGame(): Injection file exceeding maximum "
|
||||
"allowed size of "
|
||||
"4096 bytes, skipping \""
|
||||
"allowed size of 4096 bytes, skipping \""
|
||||
<< injectFile << "\"";
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue