Merge pull request #8755 from Morph1984/delimit-ips

ips_layer: Delimit parsed hex value string
This commit is contained in:
bunnei 2022-08-12 14:12:10 -07:00 committed by GitHub
commit cba3b05c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -287,7 +287,8 @@ void IPSwitchCompiler::Parse() {
std::copy(value.begin(), value.end(), std::back_inserter(replace)); std::copy(value.begin(), value.end(), std::back_inserter(replace));
} else { } else {
// hex replacement // hex replacement
const auto value = patch_line.substr(9); const auto value =
patch_line.substr(9, patch_line.find_first_of(" /\r\n", 9) - 9);
replace = Common::HexStringToVector(value, is_little_endian); replace = Common::HexStringToVector(value, is_little_endian);
} }