diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-07-12 22:47:38 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-07-12 22:47:38 (GMT) |
commit | d7f78fe9a75d96b6f3d441335dcf50a5c026d8ea (patch) | |
tree | 632744c467641825441b866c4f988c03d9c20cf1 /src/analysis | |
parent | bdda063b67d8c1d402f6dc17726fed0c800d3d1c (diff) |
Taken into account that raw immediate values can be used more than once.
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 9368291..cad2d64 100644 --- a/src/analysis/db/items/comment.c +++ b/src/analysis/db/items/comment.c @@ -1129,7 +1129,7 @@ char *g_db_comment_get_text(GDbComment *comment) for (i = 0; i < count; i++) { - string = get_flat_array_item(comment->text, 0, sizeof(rle_string)); + string = get_flat_array_item(comment->text, i, sizeof(rle_string)); assert(!is_rle_string_empty(string)); |