diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-03 22:29:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-03-05 14:29:32 +0100 |
commit | 181b23ceed77de50c2b9d05a92a795cce1beabb9 (patch) | |
tree | 0e3004095836821089a90c18251027f9450c1797 /nsswitch | |
parent | dcbfb6fc0b9050168e2010673caccb7ec8807bd1 (diff) | |
download | samba-181b23ceed77de50c2b9d05a92a795cce1beabb9.tar.gz samba-181b23ceed77de50c2b9d05a92a795cce1beabb9.tar.bz2 samba-181b23ceed77de50c2b9d05a92a795cce1beabb9.zip |
nsswitch: wbcFreeMemory deals fine with NULL
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/pam_winbind.c | 4 | ||||
-rw-r--r-- | nsswitch/wbinfo.c | 24 |
2 files changed, 7 insertions, 21 deletions
diff --git a/nsswitch/pam_winbind.c b/nsswitch/pam_winbind.c index e651ce0e49..e640b711bd 100644 --- a/nsswitch/pam_winbind.c +++ b/nsswitch/pam_winbind.c @@ -1899,9 +1899,7 @@ static int winbind_auth_request(struct pwb_context *ctx, } done: - if (logon.blobs) { - wbcFreeMemory(logon.blobs); - } + wbcFreeMemory(logon.blobs); if (info && info->blobs && !p_info) { wbcFreeMemory(info->blobs); } diff --git a/nsswitch/wbinfo.c b/nsswitch/wbinfo.c index caa37f3c9e..150193d33c 100644 --- a/nsswitch/wbinfo.c +++ b/nsswitch/wbinfo.c @@ -463,12 +463,8 @@ static bool wbinfo_get_sidaliases(const char *domain, wbcFreeMemory(alias_rids); done: - if (domain_sid_str) { - wbcFreeMemory(domain_sid_str); - } - if (dinfo) { - wbcFreeMemory(dinfo); - } + wbcFreeMemory(domain_sid_str); + wbcFreeMemory(dinfo); return (WBC_ERR_SUCCESS == wbc_status); } @@ -1296,18 +1292,10 @@ static bool wbinfo_lookuprids(const char *domain, const char *arg) ret = true; done: - if (dinfo) { - wbcFreeMemory(dinfo); - } - if (domain_name) { - wbcFreeMemory(domain_name); - } - if (names) { - wbcFreeMemory(names); - } - if (types) { - wbcFreeMemory(types); - } + wbcFreeMemory(dinfo); + wbcFreeMemory(domain_name); + wbcFreeMemory(names); + wbcFreeMemory(types); TALLOC_FREE(mem_ctx); return ret; } |