1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

r19895: Fix klokwork id 2278

(This used to be commit 8ccff6a4dd)
This commit is contained in:
Volker Lendecke 2006-11-25 16:53:56 +00:00 committed by Gerald (Jerry) Carter
parent 40dc09e009
commit f494d7d31f

View File

@ -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);