1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s4-anr: check for allocation failure before use

This commit is contained in:
Andrew Tridgell 2010-09-10 20:14:29 +10:00
parent ba726b5580
commit 5a4a11cb98

View File

@ -149,10 +149,10 @@ static int anr_replace_value(struct anr_context *ac,
if (match->length > 1 && match->data[0] == '=') {
struct ldb_val *match2 = talloc(mem_ctx, struct ldb_val);
*match2 = data_blob_const(match->data+1, match->length - 1);
if (match2 == NULL){
return ldb_oom(ldb);
}
*match2 = data_blob_const(match->data+1, match->length - 1);
match = match2;
op = LDB_OP_EQUALITY;
} else {