mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-06 07:13:12 +02:00
Fix crash in tkldb on 32 bit systems. Reported by k4be.
Also, get rid of compiler warnings (we can use C99 types now).
This commit is contained in:
+8
-4
@@ -402,9 +402,10 @@ int read_tkldb(void)
|
||||
FILE *fd;
|
||||
TKL *tkl = NULL;
|
||||
uint32_t magic = 0;
|
||||
uint32_t version;
|
||||
uint64_t cnt;
|
||||
uint64_t tklcount = 0;
|
||||
uint32_t version;
|
||||
uint64_t v;
|
||||
int added_cnt = 0;
|
||||
char c;
|
||||
char *str;
|
||||
@@ -483,8 +484,10 @@ int read_tkldb(void)
|
||||
|
||||
/* Read the common types (same for all TKLs) */
|
||||
R_SAFE(read_str(fd, &tkl->set_by));
|
||||
R_SAFE(read_int64(fd, &tkl->set_at));
|
||||
R_SAFE(read_int64(fd, &tkl->expire_at));
|
||||
R_SAFE(read_int64(fd, &v));
|
||||
tkl->set_at = v;
|
||||
R_SAFE(read_int64(fd, &v));
|
||||
tkl->expire_at = v;
|
||||
|
||||
/* Save some CPU... if it's already expired then don't bother adding */
|
||||
if (tkl->expire_at != 0 && tkl->expire_at <= TStime())
|
||||
@@ -645,7 +648,8 @@ int read_tkldb(void)
|
||||
}
|
||||
|
||||
R_SAFE(read_str(fd, &tkl->ptr.spamfilter->tkl_reason));
|
||||
R_SAFE(read_int64(fd, &tkl->ptr.spamfilter->tkl_duration));
|
||||
R_SAFE(read_int64(fd, &v));
|
||||
tkl->ptr.spamfilter->tkl_duration = v;
|
||||
|
||||
if (find_tkl_spamfilter(tkl->type, tkl->ptr.spamfilter->match->str,
|
||||
tkl->ptr.spamfilter->action,
|
||||
|
||||
Reference in New Issue
Block a user