diff options
| author | Camille Mougey <commial@gmail.com> | 2018-02-14 12:13:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-14 12:13:24 +0100 |
| commit | dcfadb31685d428618b88f19fcc96dd70cecfc8f (patch) | |
| tree | 038c6c2f545d5a77ecb6c68f030107f09d32450f /miasm2/jitter/Jitgcc.c | |
| parent | b0e9f5da9b4546a22169882e656bf2776eab9754 (diff) | |
| parent | 6702a6149c57c54bcece3fb1cd00b8c09af6e74a (diff) | |
| download | miasm-dcfadb31685d428618b88f19fcc96dd70cecfc8f.tar.gz miasm-dcfadb31685d428618b88f19fcc96dd70cecfc8f.zip | |
Merge pull request #678 from serpilliere/x86_fix_rcl
X86 fix rcl
Diffstat (limited to 'miasm2/jitter/Jitgcc.c')
| -rw-r--r-- | miasm2/jitter/Jitgcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/Jitgcc.c b/miasm2/jitter/Jitgcc.c index 71023902..79274f24 100644 --- a/miasm2/jitter/Jitgcc.c +++ b/miasm2/jitter/Jitgcc.c @@ -59,7 +59,7 @@ PyObject* gcc_exec_bloc(PyObject* self, PyObject* args) else { if (BlockDst.is_local == 1) { fprintf(stderr, "return on local label!\n"); - exit(1); + exit(EXIT_FAILURE); } // retaddr is not jitted yet return retaddr; |