diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-11-11 18:47:15 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-11-11 18:47:15 (GMT) |
commit | 04f9aebee5249624ccd4173989354cd93474376f (patch) | |
tree | 90c23774e2898be78a372650a6d6d219104196fb /src/analysis | |
parent | 77c68b54d4b2970a749eb4a658c32d2a16deacf6 (diff) |
Extended the Python bindings.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/db/items/comment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/db/items/comment.c b/src/analysis/db/items/comment.c index 47ab5b3..1c1025e 100644 --- a/src/analysis/db/items/comment.c +++ b/src/analysis/db/items/comment.c @@ -1389,7 +1389,7 @@ static int g_db_comment_contains_cursor(const GDbComment *comment, size_t index, assert(G_IS_BINARY_CURSOR(cursor)); - g_binary_cursor_get_info(G_BINARY_CURSOR(cursor), &addr); + g_binary_cursor_retrieve(G_BINARY_CURSOR(cursor), &addr); result = cmp_vmpa(&addr, &comment->addr); |