# HG changeset patch # User stefano # Date 1268007723 0 # Node ID e8c8f5a002ffed5079e9aabc6edf37d36a00c574 # Parent 20ed96c29062b205de4389be9bb6a4579863f914 Fix concat seek result. Patch by Wolfram Gloger wmglo AT-SIGN dent.med.uni-muenchen DOT de. diff -r 20ed96c29062 -r e8c8f5a002ff concat.c --- a/concat.c Mon Mar 08 00:00:50 2010 +0000 +++ b/concat.c Mon Mar 08 00:22:03 2010 +0000 @@ -183,7 +183,7 @@ if (result >= 0) { data->current = i; while (i) - result += nodes[i--].size; + result += nodes[--i].size; } return result; }