1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 20:33:13 +02:00

Little fix for previous throttling fix (accessing just free()d memory).

This commit is contained in:
Bram Matthys
2003-01-27 21:25:27 +00:00
parent 09776ff03f
commit d0dc13faa5
+1 -1
View File
@@ -788,8 +788,8 @@ void del_throttling_bucket(struct ThrottlingBucket *bucket)
int hash;
struct ThrottlingBucket *n;
hash = hash_throttling(&bucket->in);
MyFree(n);
DelListItem(n, ThrottlingHash[hash]);
MyFree(n);
return;
}