Jeff Boschee - 2004-12-13

Logged In: YES
user_id=30030

The problem is line 431 of changes.c

if (NullStr(arg1))
c = top_change - 16;

Here is my fix:

After the if statement, put this

if( c < 0 )
c = 0;

what was happening, is that if you didn't have more than 16
changes, it was going negative and trying to pull up an array
index of -15 or something.