mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
Add assert( s != NULL )
This commit is contained in:
parent
81f47aba80
commit
b458560a9e
1 changed files with 2 additions and 0 deletions
|
|
@ -39,6 +39,8 @@ attr_normalize( char *s )
|
|||
{
|
||||
char *save;
|
||||
|
||||
assert( s != NULL );
|
||||
|
||||
for ( save = s; *s; s++ ) {
|
||||
*s = TOLOWER( (unsigned char) *s );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue