diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/analysis/binary.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,11 @@ 10-11-02 Cyrille Bagard <nocbos@gmail.com> * src/analysis/binary.c: + Typo. + +10-11-02 Cyrille Bagard <nocbos@gmail.com> + + * src/analysis/binary.c: * src/analysis/binary.h: Give a direct access to disassembled instructions. diff --git a/src/analysis/binary.c b/src/analysis/binary.c index e004d4f..732d0aa 100644 --- a/src/analysis/binary.c +++ b/src/analysis/binary.c @@ -1332,7 +1332,7 @@ GArchInstruction *g_openida_binary_get_instructions(const GOpenidaBinary *binary iter != NULL; iter = g_rendering_line_get_next_iter(binary->lines, iter, NULL)) { - if (!G_IS_CODE_LINE(iter)) break; + if (G_IS_CODE_LINE(iter)) break; } if (iter != NULL) |