mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Fix disassembler issue
Fix disassembler issue properly
This commit is contained in:
parent
7b3efa746e
commit
6f45d33c8a
1 changed files with 1 additions and 1 deletions
2
src/core/vendor/DisassembleX86-64.mjs
vendored
2
src/core/vendor/DisassembleX86-64.mjs
vendored
|
@ -3609,7 +3609,7 @@ function NextByte()
|
||||||
{
|
{
|
||||||
//Add the current byte as hex to InstructionHex which will be displayed beside the decoded instruction.
|
//Add the current byte as hex to InstructionHex which will be displayed beside the decoded instruction.
|
||||||
//After an instruction decodes InstructionHex is only added beside the instruction if ShowInstructionHex is active.
|
//After an instruction decodes InstructionHex is only added beside the instruction if ShowInstructionHex is active.
|
||||||
|
var t;
|
||||||
if ( CodePos < BinCode.length ) //If not out of bounds.
|
if ( CodePos < BinCode.length ) //If not out of bounds.
|
||||||
{
|
{
|
||||||
//Convert current byte to String, and pad.
|
//Convert current byte to String, and pad.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue