Index: /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js	(revision 4506)
+++ /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js	(revision 4507)
@@ -91,9 +91,8 @@
 	{
 		var children = this.children,
-			count = children && children.length,
 			childs = [],
 			child;
 
-		for ( var i = 0; i < count; i++ )
+		for ( var i = 0; i < children.length; i++ )
 		{
 			child = children[ i ];
@@ -104,5 +103,5 @@
 			{
 				childs.push( child );
-				children.splice( ( count--, i-- ), 1 );
+				children.splice( i--, 1 );
 			}
 			childs = childs.concat( child.removeAnyChildWithName( tagName ) );
