From 853835196e8eb2b05c94cf244ee45941a3fdc8f8 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 10 Feb 2023 17:32:08 -0500 Subject: [PATCH] stop segfault on mac --- cgi.d | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/cgi.d b/cgi.d index a430539..4ac1c60 100644 --- a/cgi.d +++ b/cgi.d @@ -3513,7 +3513,11 @@ string toHexUpper(long num) { // the generic mixins -/// Use this instead of writing your own main +/++ + Use this instead of writing your own main + + It ultimately calls [cgiMainImpl] which creates a [RequestServer] for you. ++/ mixin template GenericMain(alias fun, long maxContentLength = defaultMaxContentLength) { mixin CustomCgiMain!(Cgi, fun, maxContentLength); } @@ -5478,7 +5482,8 @@ class ListeningConnectionManager { fd_set read_fds; FD_ZERO(&read_fds); FD_SET(listener.handle, &read_fds); - FD_SET(cancelfd, &read_fds); + if(cancelfd != -1) + FD_SET(cancelfd, &read_fds); auto max = listener.handle > cancelfd ? listener.handle : cancelfd; auto ret = select(max + 1, &read_fds, null, null, null); if(ret == -1) { @@ -5489,7 +5494,7 @@ class ListeningConnectionManager { throw new Exception("wtf select"); } - if(FD_ISSET(cancelfd, &read_fds)) { + if(cancelfd != -1 && FD_ISSET(cancelfd, &read_fds)) { return null; } @@ -9480,8 +9485,10 @@ css"; Element htmlContainer() { auto document = new Document(q"html - + + + D Application