]> git.sesse.net Git - vlc/commitdiff
svn nightmare is ending... (Fix previous commit).
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 26 Feb 2008 00:32:14 +0000 (00:32 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 26 Feb 2008 00:32:14 +0000 (00:32 +0000)
src/misc/objects.c

index b191ee447b851578bf17a77708726fe69ad79c19..a6db57f32135755fda747a9103bcae67cc2d7e22 100644 (file)
@@ -367,67 +367,22 @@ static void vlc_object_destroy( vlc_object_t *p_this )
 
     if( p_this->i_children )
     {
-<<<<<<< .mine
         fprintf( stderr,
                   "ERROR: cannot delete object (%i, %s) with children\n",
                   p_this->i_object_id, p_this->psz_object_name );
         fflush(stderr);
         abort();
-=======
-        msg_Err( logger, "cannot delete object (%i, %s) with children" ,
-                 p_this->i_object_id, p_this->psz_object_name );
-        return;
->>>>>>> .r25344
     }
 
     if( p_this->p_parent )
     {
-<<<<<<< .mine
         fprintf( stderr,
                   "ERROR: cannot delete object (%i, %s) with a parent\n",
                   p_this->i_object_id, p_this->psz_object_name );
         fflush(stderr);
         abort();
-=======
-        msg_Err( logger, "cannot delete object (%i, %s) with a parent",
-                 p_this->i_object_id, p_this->psz_object_name );
-        return;
->>>>>>> .r25344
-    }
-
-<<<<<<< .mine
-=======
-    while( p_priv->i_refcount > 0 )
-    {
-        i_delay++;
-
-        /* Don't warn immediately ... 100ms seems OK */
-        if( i_delay == 2 )
-        {
-            msg_Warn( logger,
-                  "refcount is %u, delaying before deletion (id=%d,type=%d)",
-                  p_priv->i_refcount, p_this->i_object_id,
-                  p_this->i_object_type );
-        }
-        else if( i_delay == 10 )
-        {
-            msg_Err( logger,
-                  "refcount is %u, delaying again (id=%d,type=%d)",
-                  p_priv->i_refcount, p_this->i_object_id,
-                  p_this->i_object_type );
-        }
-        else if( i_delay == 20 )
-        {
-            msg_Err( logger,
-                  "waited too long, cancelling destruction (id=%d,type=%d)",
-                  p_this->i_object_id, p_this->i_object_type );
-            return;
-        }
-
-        msleep( 100000 );
     }
 
->>>>>>> .r25344
     /* Destroy the associated variables, starting from the end so that
      * no memmove calls have to be done. */
     while( p_priv->i_vars )