In a_utf8.c, lines 85 and 86 (1.0.1e) : ...if((*p & 0x80) == 0) { // as this byte looks like : 0xxxxxxx value = *p++ & 0x7f; // this line could as well be written : value = *p++;
...
If I don't miss something, it would seems clearer to me. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager majord...@openssl.org