diff options
author | Michael Adam <obnox@samba.org> | 2010-01-05 18:22:25 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-01-07 11:07:51 +0100 |
commit | 71e3de6c9fa50ce0035092da6b1a27017ee1bb56 (patch) | |
tree | 6ee821f70cef604398cdd1a0a12735fe36828fe0 | |
parent | 71a40d7e2c21bf3ac47be3ec57fb091ff420ba9a (diff) | |
download | samba-71e3de6c9fa50ce0035092da6b1a27017ee1bb56.tar.gz samba-71e3de6c9fa50ce0035092da6b1a27017ee1bb56.tar.bz2 samba-71e3de6c9fa50ce0035092da6b1a27017ee1bb56.zip |
s3:pdb_ldap:init_sam_from_ldap: untangle an assignment from the check
to enhance readability and denbuggability.
Michael
-rw-r--r-- | source3/passdb/pdb_ldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 90ac8e5ffa..1ab21e1b4d 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -915,9 +915,9 @@ static bool init_sam_from_ldap(struct ldapsam_privates *ldap_state, pwHistLen = MIN(pwHistLen, MAX_PW_HISTORY_LEN); - if ((pwhist = TALLOC_ARRAY(ctx, uint8, - pwHistLen * PW_HISTORY_ENTRY_LEN)) == - NULL){ + pwhist = TALLOC_ARRAY(ctx, uint8, + pwHistLen * PW_HISTORY_ENTRY_LEN); + if (pwhist == NULL) { DEBUG(0, ("init_sam_from_ldap: talloc failed!\n")); goto fn_exit; } |