We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f122c3 commit d76c9fcCopy full SHA for d76c9fc
pwnlib/shellcraft/templates/mips/mov.asm
@@ -69,7 +69,7 @@ if not dst.startswith('$'):
69
log.error("Registers must start with $")
70
return
71
72
-if isinstance(src, str) and dst.startswith('$') and dst not in registers.mips:
+if isinstance(dst, str) and dst.startswith('$') and dst not in registers.mips:
73
log.error("Unknown register %r" % dst)
74
75
0 commit comments