diff options
Diffstat (limited to 'src/libfast/dispatcher.c')
-rw-r--r-- | src/libfast/dispatcher.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libfast/dispatcher.c b/src/libfast/dispatcher.c index bae6a28e8..c4dbdecc3 100644 --- a/src/libfast/dispatcher.c +++ b/src/libfast/dispatcher.c @@ -366,15 +366,15 @@ dispatcher_t *dispatcher_create(char *socket, bool debug, int timeout, this->context_constructor = constructor; pthread_mutex_init(&this->mutex, NULL); this->param = param; - this->fd = 0; - this->timeout = timeout; - this->debug = debug; - this->threads = NULL; + this->fd = 0; + this->timeout = timeout; + this->debug = debug; + this->threads = NULL; - FCGX_Init(); + FCGX_Init(); - if (socket) - { + if (socket) + { unlink(socket); this->fd = FCGX_OpenSocket(socket, 10); } |