summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/ldb_map.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-08-22 06:01:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:27 -0500
commitcda3a37d76872c9243420904b0cf92a38d3cdb5d (patch)
tree56870688df20e610212d63243c4b89218824cc4a /source4/lib/ldb/modules/ldb_map.h
parent1d1f100a730f5fc8b6cffd1079ed1563248b55f2 (diff)
downloadsamba-cda3a37d76872c9243420904b0cf92a38d3cdb5d.tar.gz
samba-cda3a37d76872c9243420904b0cf92a38d3cdb5d.tar.bz2
samba-cda3a37d76872c9243420904b0cf92a38d3cdb5d.zip
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)
Diffstat (limited to 'source4/lib/ldb/modules/ldb_map.h')
-rw-r--r--source4/lib/ldb/modules/ldb_map.h2
1 files changed, 1 insertions, 1 deletions
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 */