DEADSOFTWARE

fixed small bug in hashtable
authorKetmar Dark <ketmar@ketmar.no-ip.org>
Fri, 1 Jun 2018 18:16:22 +0000 (21:16 +0300)
committerKetmar Dark <ketmar@ketmar.no-ip.org>
Fri, 1 Jun 2018 18:17:42 +0000 (21:17 +0300)
src/shared/hashtable.pas

index 98c924d20bddb1176a3246f10aec6f10ea57cfda..86fd547c4a532d8e4f95fc382b04129e86b40800 100644 (file)
@@ -949,7 +949,7 @@ begin
       lastfree := e;
     end;
   end;
-  if (lastfree <> nil) then e.nextFree := nil;
+  if (lastfree <> nil) then lastfree.nextFree := nil;
   {$IFDEF RBHASH_SANITY_CHECKS}
   if (cnt <> mBucketsUsed) then raise Exception.Create('internal error in hash table resize (invalid first/last range; 0)');
   if (cnt <> mEntriesUsed) then raise Exception.Create('internal error in hash table resize (invalid first/last range; 1)');