mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 02:29:34 -05:00
assert(pointer) -> assert(pointer != NULL)
This commit is contained in:
parent
d72acf7250
commit
5a6362c453
1 changed files with 1 additions and 1 deletions
|
|
@ -692,7 +692,7 @@ unique_cf_uri( ConfigArgs *c )
|
|||
* test024 Will hit this case in such a
|
||||
* situation.
|
||||
*/
|
||||
assert (*domainp);
|
||||
assert (*domainp != NULL);
|
||||
|
||||
domain = *domainp;
|
||||
*domainp = domain->next;
|
||||
|
|
|
|||
Loading…
Reference in a new issue