From cda3a37d76872c9243420904b0cf92a38d3cdb5d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 22 Aug 2006 06:01:47 +0000 Subject: r17698: The original code assumed that &data->context was a valid talloc pointer. This only works when this is the only structure member, but when I added a new context pointer, it failed. Andrew Bartlett (This used to be commit 5bcfa12cef0d9eba5d5d1f65f676e7852297667f) --- source4/lib/ldb/modules/ldb_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/modules/ldb_map.h') diff --git a/source4/lib/ldb/modules/ldb_map.h b/source4/lib/ldb/modules/ldb_map.h index edd3eca871..e743970564 100644 --- a/source4/lib/ldb/modules/ldb_map.h +++ b/source4/lib/ldb/modules/ldb_map.h @@ -138,7 +138,7 @@ struct ldb_map_context { /* Global private data */ struct map_private { void *caller_private; - struct ldb_map_context context; + struct ldb_map_context *context; }; /* initialization function */ -- cgit