Module: kamailio
Branch: master
Commit: c644d311100e52e83f7ddf54a3a0b7be83525184
URL:
https://github.com/kamailio/kamailio/commit/c644d311100e52e83f7ddf54a3a0b7b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-09-08T13:09:59+02:00
core: events - return after SREV_TCP_WS_CLOSE callbacks are executed
---
Modified: src/core/events.c
---
Diff:
https://github.com/kamailio/kamailio/commit/c644d311100e52e83f7ddf54a3a0b7b…
Patch:
https://github.com/kamailio/kamailio/commit/c644d311100e52e83f7ddf54a3a0b7b…
---
diff --git a/src/core/events.c b/src/core/events.c
index b9df7dcf2d..69a496df31 100644
--- a/src/core/events.c
+++ b/src/core/events.c
@@ -353,6 +353,7 @@ int sr_event_exec(int type, sr_event_param_t *evp)
&& _sr_events_list.tcp_ws_close[i]; i++) {
ret = _sr_events_list.tcp_ws_close[i](evp);
}
+ return ret;
} else return 1;
default:
return -1;