release v0.2.2
This commit is contained in:
@@ -422,7 +422,7 @@ def main():
|
|||||||
| | |_| \_, |\__,_|_| |_||_||_|\___/|_| |_|___/|_||_|\___/ \__| | |
|
| | |_| \_, |\__,_|_| |_||_||_|\___/|_| |_|___/|_||_|\___/ \__| | |
|
||||||
| | |__/ | |
|
| | |__/ | |
|
||||||
|__|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|__|
|
|__|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|__|
|
||||||
(____) v0.2.1+ (____)
|
(____) v0.2.2 (____)
|
||||||
|
|
||||||
For technology exchange only. Use at your own risk.
|
For technology exchange only. Use at your own risk.
|
||||||
GitHub: https://github.com/Lil-House/Pyarmor-Static-Unpack-1shot
|
GitHub: https://github.com/Lil-House/Pyarmor-Static-Unpack-1shot
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
|
|||||||
// If destination is a:
|
// If destination is a:
|
||||||
// LOAD_CONST '__pyarmor_exit_N__'
|
// LOAD_CONST '__pyarmor_exit_N__'
|
||||||
// Then change JUMP_FORWARD to RETURN_VALUE
|
// Then change JUMP_FORWARD to RETURN_VALUE
|
||||||
const char* code_bytes = code->code()->value();
|
auto code_bytes = (const unsigned char*)code->code()->value();
|
||||||
for (int i = 0; i < 10; i += 2) {
|
for (int i = 0; i < 10; i += 2) {
|
||||||
if (pos + offs + i + 1 >= code->code()->length())
|
if (pos + offs + i + 1 >= code->code()->length())
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "ASTree.h"
|
#include "ASTree.h"
|
||||||
|
|
||||||
const char* VERSION = "v0.2.1+";
|
const char* VERSION = "v0.2.2";
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user