Skip to content

Commit 3ce90df

Browse files
authored
Merge pull request #26722 from gottesmm/pr-da0194eebb4e26207b9bf4b4b08d3910ea510825
2 parents b732344 + b99fb69 commit 3ce90df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/lldb/lldbToolBox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def disassemble_asm_cfg(debugger, command, exec_ctx, result, internal_dict):
4747
d = exec_ctx.frame.Disassemble()
4848

4949
with tempfile.TemporaryFile() as f:
50-
f.write(d)
50+
f.write(bytes(d, 'utf-8'))
5151
f.flush()
5252
f.seek(0)
5353
p1 = subprocess.Popen([BLOCKIFYASM_PATH], stdin=f,

0 commit comments

Comments
 (0)