mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
authd: don't use wild pointer
This commit is contained in:
parent
a6a30cc7b8
commit
540ae37b96
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ timeout_dead_authd_clients(void *notused __unused)
|
|||
|
||||
RB_DICTIONARY_FOREACH(id, &iter, cid_clients)
|
||||
{
|
||||
struct Client *client_p;
|
||||
struct Client *client_p = ptr->data;
|
||||
|
||||
if(client_p->preClient->authd_timeout < rb_current_time())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue