mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-16 09:09:07 -05:00
Cast char* argument to hh_to_c() to Byte*
This commit is contained in:
parent
921158f6fc
commit
61174d1960
1 changed files with 1 additions and 1 deletions
|
|
@ -1676,7 +1676,7 @@ char *s;
|
|||
|
||||
while ( *s ) {
|
||||
if ( *s == '\\' ) {
|
||||
if ( (c = hh_to_c( ++s )) != -1 ) {
|
||||
if ( (c = hh_to_c( (Byte *) ++s )) != -1 ) {
|
||||
*o++ = c;
|
||||
s += 2;
|
||||
} else
|
||||
|
|
|
|||
Loading…
Reference in a new issue