Commit 65940085 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

httpd: remove stray vlc_object_waitpipe() call

There is no actual usage of the waitpipe left in the HTTP server.
parent e823a595
......@@ -967,11 +967,6 @@ static httpd_host_t *httpd_HostCreate(vlc_object_t *p_this,
}
for (host->nfd = 0; host->fds[host->nfd] != -1; host->nfd++);
if (vlc_object_waitpipe(VLC_OBJECT(host)) == -1) {
msg_Err(host, "signaling pipe error: %s", vlc_strerror_c(errno));
goto error;
}
host->port = port;
host->i_url = 0;
host->url = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment