summaryrefslogtreecommitdiff
path: root/source4/lib/events/events_liboop.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/events/events_liboop.c')
-rw-r--r--source4/lib/events/events_liboop.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/source4/lib/events/events_liboop.c b/source4/lib/events/events_liboop.c
index 54cb8d5a52..d2d80ce075 100644
--- a/source4/lib/events/events_liboop.c
+++ b/source4/lib/events/events_liboop.c
@@ -20,7 +20,8 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* NOTE: this code compiles fine, but is completly *UNTESTED*
+/*
+NOTE: this code compiles fine, but is completly *UNTESTED*
and is only commited as example
*/
@@ -30,6 +31,15 @@
#include <oop.h>
+/*
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+ NOTE: this code compiles fine, but is completly *UNTESTED*
+ and is only commited as example
+
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+*/
+
static int oop_event_context_destructor(void *ptr)
{
struct event_context *ev = talloc_get_type(ptr, struct event_context);
@@ -139,8 +149,6 @@ static struct fd_event *oop_event_add_fd(struct event_context *ev, TALLOC_CTX *m
*/
static uint16_t oop_event_get_fd_flags(struct fd_event *fde)
{
- if (!fde) return 0;
-
return fde->flags;
}
@@ -152,8 +160,6 @@ static void oop_event_set_fd_flags(struct fd_event *fde, uint16_t flags)
oop_source_sys *oop_sys;
oop_source *oop;
- if (!fde) return;
-
oop_sys = fde->event_ctx->additional_data;
oop = oop_sys_source(oop_sys);