1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

FIXME note

This commit is contained in:
Andrei Zmievski
2006-07-13 22:26:50 +00:00
parent c8254d82d7
commit f717e25ce7
+1
View File
@@ -4065,6 +4065,7 @@ static int php_u_similar_char(const UChar *txt1, int len1, const UChar *txt2, in
sum += php_u_similar_char(txt1, pos1, txt2, pos2);
}
if ((pos1 + end1 < len1) && (pos2 + end2 < len2)) {
/* FIXME should this be calling php_u_similar_char? */
sum += php_similar_char((UChar *)txt1+pos1+end1, len1-pos1-end1,
(UChar *)txt2+pos2+end2, len2-pos2-end2);
}