diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | plugins/imuxsock/imuxsock.c | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,4 +1,8 @@ --------------------------------------------------------------------------- +Version 7.3.10 [devel] 2013-04-?? +- bugfix: imuxsock aborted under some conditions + regression from ratelimiting enhancements +--------------------------------------------------------------------------- Version 7.3.9 [devel] 2013-03-27 - support for signing logs added - imudp: now supports user-selectable inputname diff --git a/plugins/imuxsock/imuxsock.c b/plugins/imuxsock/imuxsock.c index f15773fc..0f4ded1d 100644 --- a/plugins/imuxsock/imuxsock.c +++ b/plugins/imuxsock/imuxsock.c @@ -570,6 +570,10 @@ findRatelimiter(lstn_t *pLstn, struct ucred *cred, ratelimit_t **prl) FINALIZE; } #endif + if(pLstn->ht == NULL) { + *prl = NULL; + FINALIZE; + } rl = hashtable_search(pLstn->ht, &cred->pid); if(rl == NULL) { |