From d6a41c2723cda59b3cd6ae9a1e77b62f25067663 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 14 Feb 2011 10:29:49 -0500 Subject: Return NULL if tevent_add_fd() is passed a negative fd Autobuild-User: Simo Sorce Autobuild-Date: Mon Feb 14 17:47:03 CET 2011 on sn-devel-104 --- lib/tevent/tevent_fd.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/tevent/tevent_fd.c') diff --git a/lib/tevent/tevent_fd.c b/lib/tevent/tevent_fd.c index c58e8e1ab1..455961b67c 100644 --- a/lib/tevent/tevent_fd.c +++ b/lib/tevent/tevent_fd.c @@ -51,6 +51,12 @@ struct tevent_fd *tevent_common_add_fd(struct tevent_context *ev, TALLOC_CTX *me { struct tevent_fd *fde; + /* tevent will crash later on select() if we save + * a negative file descriptor. Better to fail here + * so that consumers will be able to debug it + */ + if (fd < 0) return NULL; + fde = talloc(mem_ctx?mem_ctx:ev, struct tevent_fd); if (!fde) return NULL; -- cgit