diff --git a/ChangeLog b/ChangeLog index 8470e267..e1b641d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,10 @@ v0.51.5 19-May-2004 converted so that the path information is removed, this is to keep programs like FD (and maybe others) happy. + mbaff: + Fixed a bug that crashed mbaff when new files are found in the + files database (uploads). + v0.51.4 11-Apr-2004 - 19-May-2004 diff --git a/mbfido/announce.c b/mbfido/announce.c index c8ab95af..ab75ba6b 100644 --- a/mbfido/announce.c +++ b/mbfido/announce.c @@ -133,7 +133,7 @@ void Uploads() if (mbsedb_LockFDB(fdb_area, 30)) { fseek(fdb_area->fp, - fdbhdr.recsize, SEEK_CUR); fwrite(&fdb, fdbhdr.recsize, 1, fdb_area->fp); - mbsedb_CloseFDB(fdb_area); + mbsedb_UnlockFDB(fdb_area); } } }