diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-01-19 13:36:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:43:50 -0500 |
commit | c2e492ece3e5dd39c3c113dfe7f745fc900a5dc0 (patch) | |
tree | 63a8cd76efefcb561ca31a1202dcca67cfbb11d5 /source4/dsdb/samdb/ldb_modules | |
parent | 87f5bed98ad4e40c12095492677b8c5433217aa2 (diff) | |
download | samba-c2e492ece3e5dd39c3c113dfe7f745fc900a5dc0.tar.gz samba-c2e492ece3e5dd39c3c113dfe7f745fc900a5dc0.tar.bz2 samba-c2e492ece3e5dd39c3c113dfe7f745fc900a5dc0.zip |
r20902: don't crash if the object isn't there yet
metze
(This used to be commit 4588e2522b11f707e608488c782f6988fd97628a)
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/password_hash.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c index 38a44bdae2..9a72643ec9 100644 --- a/source4/dsdb/samdb/ldb_modules/password_hash.c +++ b/source4/dsdb/samdb/ldb_modules/password_hash.c @@ -1192,6 +1192,10 @@ static int ph_wait(struct ldb_handle *handle) { return LDB_SUCCESS; } + if (ac->search_res == NULL) { + return LDB_ERR_NO_SUCH_OBJECT; + } + /* self search done, go on */ return password_hash_mod_search_dom(handle); |