Index: feeds.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/audio/contrib/feeds/feeds.inc,v
retrieving revision 1.3
diff -u -r1.3 feeds.inc
--- feeds.inc	27 Aug 2007 23:23:54 -0000	1.3
+++ feeds.inc	26 Feb 2008 08:47:48 -0000
@@ -78,7 +78,11 @@
   }
   $output .= '  </trackList>';
   $output .= '</playlist>';
-
+  
+  // hopefully fixing 212913, i suspect nul's are making this choke
+  // remove any nul characters
+  $output = str_replace("\0",'',$output);
+  
   drupal_set_header('Content-Type: text/xml; charset=utf-8');
   print $output;
   exit();
