ICU-932 bug2() was wrong. Don't use strlen on a non-NULL terminated string.

X-SVN-Rev: 4737
This commit is contained in:
George Rhoten 2001-05-21 23:00:59 +00:00
parent 7a2d4c49a9
commit c3bcdd8bbf

View File

@ -1326,7 +1326,7 @@ void bug2()
target,
sizeof(target),
source,
strlen(source),
sizeof(source),
&err);
if ( size != 10 ) {