From 5a4a11cb98460dfab0517636a1434e0a96009c4e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 10 Sep 2010 20:14:29 +1000 Subject: s4-anr: check for allocation failure before use --- source4/dsdb/samdb/ldb_modules/anr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/samdb/ldb_modules/anr.c') diff --git a/source4/dsdb/samdb/ldb_modules/anr.c b/source4/dsdb/samdb/ldb_modules/anr.c index 68f007ebd9..15a8a7aa48 100644 --- a/source4/dsdb/samdb/ldb_modules/anr.c +++ b/source4/dsdb/samdb/ldb_modules/anr.c @@ -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 { -- cgit