Skip to content

Commit

Permalink
Merge pull request #142 from AngeloD2022/fix/deob-ident-overflow
Browse files Browse the repository at this point in the history
fix/deob-ident-overflow
  • Loading branch information
AngeloD2022 authored Sep 20, 2024
2 parents 6d25d6a + 34a70cc commit abf716b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2
1.7.3
2 changes: 1 addition & 1 deletion src/jsxer/reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ ByteString Reader::readSID(bool operator_context) {

// if a symbol name is obfuscated, rename it to something more sensible...
if (_unblind && jsxer::deob::jsxblind_should_substitute(deobfuscationContext, symbol, operator_context)) {
string deobfuscated = "symbol_" + fmt::to_string((int)id);
string deobfuscated = "symbol_" + fmt::to_string(id_int);
symbol = utils::to_byte_string(deobfuscated);
}

Expand Down

0 comments on commit abf716b

Please sign in to comment.