summaryrefslogtreecommitdiff
path: root/source3/smbd/nttrans.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-05-27 09:19:57 +0000
committerLuke Leighton <lkcl@samba.org>2000-05-27 09:19:57 +0000
commit712a30ed51ca2b58e00d38a5d6d70d564b1da11b (patch)
tree459caacb9a440f85d8f318838638f0ab36d4dbd6 /source3/smbd/nttrans.c
parent2f3dbeff6f555de91f772eeb1cfda86d80f35928 (diff)
downloadsamba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.tar.gz
samba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.tar.bz2
samba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.zip
prs_give_memory in wrong place, also poss. was losing mem.
(This used to be commit 9805e17cd0ce427c329a8b5a8318d5f75227e283)
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r--source3/smbd/nttrans.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index a149374114..bb0436aab3 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -1924,7 +1924,13 @@ static int call_nt_transact_query_security_desc(connection_struct *conn,
* Init the parse struct we will marshall into.
*/
- prs_init(&pd, sec_desc_size, 4, MARSHALL);
+ prs_init(&pd, 0, 4, MARSHALL);
+
+ /*
+ * copy the data out of the marshalled structure
+ */
+
+ prs_give_memory( &pd, data, (uint32)sec_desc_size, False);
/*
* Finally, linearize into the outgoing buffer.
@@ -1944,12 +1950,6 @@ security descriptor.\n"));
}
/*
- * copy the data out of the marshalled structure
- */
-
- prs_give_memory( &pd, data, (uint32)sec_desc_size, False);
-
- /*
* Now we can delete the security descriptor.
*/