Commit 3f6827cb authored by claes's avatar claes

Buggfix i recall list

parent d871ed7f
......@@ -3892,7 +3892,7 @@ void GraphRecallBuff::insert( GeDyn *data, char *data_key, grow_tObject object)
if ( cnt == size)
delete buff[size-1];
for ( i = cnt; i > 0; i--) {
for ( i = cnt - 1; i > 0; i--) {
buff[i] = buff[i-1];
strcpy( key[i], key[i-1]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment