diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-11-25 16:53:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:07 -0500 |
commit | 8ccff6a4dd92dfad4942b562cd1bb27d22d59661 (patch) | |
tree | 23c3875ee39ffac2eea0f92931aa97c855c6918f /source | |
parent | 4b075f347b5449b199be19221187ce66916384cf (diff) | |
download | samba-8ccff6a4dd92dfad4942b562cd1bb27d22d59661.tar.gz samba-8ccff6a4dd92dfad4942b562cd1bb27d22d59661.tar.xz samba-8ccff6a4dd92dfad4942b562cd1bb27d22d59661.zip |
r19895: Fix klokwork id 2278
Diffstat (limited to 'source')
-rw-r--r-- | source/lib/ldb/tools/cmdline.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/lib/ldb/tools/cmdline.c b/source/lib/ldb/tools/cmdline.c index 928519f3bbd..b20919ff97d 100644 --- a/source/lib/ldb/tools/cmdline.c +++ b/source/lib/ldb/tools/cmdline.c @@ -269,7 +269,10 @@ struct ldb_control **parse_controls(void *mem_ctx, char **control_strings) fprintf(stderr, " note: b = boolean, n = number, s = string, o = b64 binary blob\n"); return NULL; } - ctrl[i] = talloc(ctrl, struct ldb_control); + if (!(ctrl[i] = talloc(ctrl, struct ldb_control))) { + fprintf(stderr, "talloc failed\n"); + return NULL; + } ctrl[i]->oid = LDB_CONTROL_VLV_REQ_OID; ctrl[i]->critical = crit; control = talloc(ctrl[i], struct ldb_vlv_req_control); |