summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/paged_results.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-13 02:33:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:29 -0500
commit05cdd9ccafeeb384792b9ce7ca044bcec1bfc839 (patch)
tree5e34e06ecfa90d4248e4d511af80f67636c759ac /source4/lib/ldb/modules/paged_results.c
parent24fe49a3d10633fa9be5547e89d10be1d5f9ccb1 (diff)
downloadsamba-05cdd9ccafeeb384792b9ce7ca044bcec1bfc839.tar.gz
samba-05cdd9ccafeeb384792b9ce7ca044bcec1bfc839.tar.bz2
samba-05cdd9ccafeeb384792b9ce7ca044bcec1bfc839.zip
r18439: 2nd try at a talloc_move() api. This type with the ** ptr interface
exposed. Unfortunately this generates a large number of type punning warnings. We'll have to find some magic to hide those. (This used to be commit 254cbf09dee5a1e20c47e47a298f1a8d172b41b9)
Diffstat (limited to 'source4/lib/ldb/modules/paged_results.c')
-rw-r--r--source4/lib/ldb/modules/paged_results.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/modules/paged_results.c b/source4/lib/ldb/modules/paged_results.c
index 6636efcccb..133ee1fb78 100644
--- a/source4/lib/ldb/modules/paged_results.c
+++ b/source4/lib/ldb/modules/paged_results.c
@@ -210,7 +210,7 @@ static int paged_search_callback(struct ldb_context *ldb, void *context, struct
}
if (ares->type == LDB_REPLY_DONE) {
- ac->store->controls = talloc_move(ac->store, ares->controls);
+ ac->store->controls = talloc_move(ac->store, &ares->controls);
talloc_free(ares);
}
@@ -383,7 +383,7 @@ static int paged_results(struct ldb_handle *handle)
ares->controls = ac->store->controls;
while (ares->controls[i]) i++; /* counting */
- ares->controls = talloc_move(ares, ac->store->controls);
+ ares->controls = talloc_move(ares, &ac->store->controls);
num_ctrls += i;
}