Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/ID3/module.audio-video.asf.php 2 locations

@@ 1966-1970 (lines=5) @@
1963
		$offset += 4;
1964
1965
		$WMpicture['image_mime'] = '';
1966
		do {
1967
			$next_byte_pair = substr($data, $offset, 2);
1968
			$offset += 2;
1969
			$WMpicture['image_mime'] .= $next_byte_pair;
1970
		} while ($next_byte_pair !== "\x00\x00");
1971
1972
		$WMpicture['image_description'] = '';
1973
		do {
@@ 1973-1977 (lines=5) @@
1970
		} while ($next_byte_pair !== "\x00\x00");
1971
1972
		$WMpicture['image_description'] = '';
1973
		do {
1974
			$next_byte_pair = substr($data, $offset, 2);
1975
			$offset += 2;
1976
			$WMpicture['image_description'] .= $next_byte_pair;
1977
		} while ($next_byte_pair !== "\x00\x00");
1978
1979
		$WMpicture['dataoffset'] = $offset;
1980
		$WMpicture['data'] = substr($data, $offset);