Removed an assert that will not hold when the chain currently executing was merged...
authorWim Taymans <wim.taymans@gmail.com>
Thu, 27 Feb 2003 21:23:39 +0000 (21:23 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 27 Feb 2003 21:23:39 +0000 (21:23 +0000)
Original commit message from CVS:
Removed an assert that will not hold when the chain currently executing
was merged into another one.

gst/schedulers/gstoptimalscheduler.c

index 1e9f95c..911829b 100644 (file)
@@ -470,8 +470,6 @@ merge_chains (GstOptSchedulerChain *chain1, GstOptSchedulerChain *chain2)
   }
   chain2 = unref_chain (chain2);
 
-  g_assert (chain2 == NULL);
-
   return chain1;
 }