diff options
| author | David Lamparter <equinox@diac24.net> | 2019-06-14 23:48:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-14 23:48:36 +0200 |
| commit | ce746edebb88320af871d6e4bc42a8022f7c1da5 (patch) | |
| tree | 0425f78a0d21ac8d38518fab78c14ca08195f560 /lib/lib_errors.c | |
| parent | 277aee6fc968b3780302c9d141398e6138b54a50 (diff) | |
| parent | a0b36ae6733dfe44d192382b8fd583df30d555fd (diff) | |
lib: Prevent infinite loop in fd handling (#4516)
lib: Prevent infinite loop in fd handling
Diffstat (limited to 'lib/lib_errors.c')
| -rw-r--r-- | lib/lib_errors.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/lib_errors.c b/lib/lib_errors.c index b6c764d873..e0559f332d 100644 --- a/lib/lib_errors.c +++ b/lib/lib_errors.c @@ -51,6 +51,12 @@ static struct log_ref ferr_lib_warn[] = { .suggestion = "Gather log data and open an Issue", }, { + .code = EC_LIB_NO_THREAD, + .title = "The Event subsystem has detected an internal FD problem", + .description = "The Event subsystem has detected a file descriptor read/write event without an associated handling function. This is a bug, please collect log data and open an issue.", + .suggestion = "Gather log data and open an Issue", + }, + { .code = EC_LIB_RMAP_RECURSION_LIMIT, .title = "Reached the Route-Map Recursion Limit", .description = "The Route-Map subsystem has detected a route-map depth of RMAP_RECURSION_LIMIT and has stopped processing", |
