]> git.sesse.net Git - vlc/commitdiff
Cleanup previous commit
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 1 Oct 2007 18:11:03 +0000 (18:11 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 1 Oct 2007 18:11:03 +0000 (18:11 +0000)
src/network/httpd.c

index e54b6f821768b8c312b608954eb399980e64e6cd..b85b8064952228bf97028a9c11375f4347ade22b 100644 (file)
@@ -1062,6 +1062,14 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, const char *psz_hostname,
     if (host == NULL)
         goto error;
 
+    vlc_object_lock( host );
+    if( vlc_object_waitpipe( host ) == -1 )
+    {
+        vlc_object_unlock( host );
+        goto error;
+    }
+    vlc_object_unlock( host );
+
     host->httpd = httpd;
     vlc_mutex_init( httpd, &host->lock );
     host->i_ref = 1;
@@ -2015,8 +2023,13 @@ static void httpd_HostThread( httpd_host_t *host )
     tls_session_t *p_tls = NULL;
     counter_t *p_total_counter = stats_CounterCreate( host, VLC_VAR_INTEGER, STATS_COUNTER );
     counter_t *p_active_counter = stats_CounterCreate( host, VLC_VAR_INTEGER, STATS_COUNTER );
+    int evfd;
     vlc_bool_t b_die = VLC_FALSE;
 
+    vlc_object_lock( host );
+    evfd = vlc_object_waitpipe( host );
+    vlc_object_unlock( host );
+
     while( !b_die )
     {
         if( host->i_url <= 0 )
@@ -2414,18 +2427,13 @@ static void httpd_HostThread( httpd_host_t *host )
             else
                 b_low_delay = VLC_TRUE;
         }
-
-        vlc_object_lock( host );
-        int evfd = ufd[nfd].fd = vlc_object_waitpipe( host );
-        if( ufd[nfd].fd != -1 )
-        {
-            ufd[nfd].events = POLLIN;
-            ufd[nfd].revents = 0;
-            nfd++;
-        }
-        vlc_object_unlock( host );
         vlc_mutex_unlock( &host->lock );
 
+        ufd[nfd].fd = evfd;
+        ufd[nfd].events = POLLIN;
+        ufd[nfd].revents = 0;
+        nfd++;
+
         /* we will wait 20ms (not too big) if HTTPD_CLIENT_WAITING */
         switch( poll( ufd, nfd, b_low_delay ? 20 : -1) )
         {
@@ -2441,7 +2449,7 @@ static void httpd_HostThread( httpd_host_t *host )
         }
 
         vlc_object_lock( host );
-        if( ( evfd != -1 ) && ( ufd[nfd - 1].revents ) )
+        if( ufd[nfd - 1].revents )
             b_die = vlc_object_wait( host );
         vlc_object_unlock( host );