remove useless substitution

git-svn: trunk@2431
remotes/push_mirror/metadata
Tomasz Kojm 19 years ago
parent bd98896151
commit a8c9bbee65
  1. 2
      clamav-devel/libclamav/str.c

@ -193,8 +193,6 @@ char *cli_utf16toascii(const char *str, unsigned int length)
for(i = 0, j = 0; i < length; i += 2, j++) {
decoded[j] = str[i + 1] << 4;
decoded[j] += str[i];
if(decoded[j] == '%')
decoded[j] = '_';
}
return decoded;

Loading…
Cancel
Save