summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-06-09 00:13:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:13 -0500
commit2e6deee0208aba89fb3ecc7ead62d867e4da20ea (patch)
treea04a2125eca2571cedbbfee9b2d608495d3b486c /source3/include
parentbde0642ab43b92b780bd60cc889116154110c878 (diff)
downloadsamba-2e6deee0208aba89fb3ecc7ead62d867e4da20ea.tar.gz
samba-2e6deee0208aba89fb3ecc7ead62d867e4da20ea.tar.bz2
samba-2e6deee0208aba89fb3ecc7ead62d867e4da20ea.zip
r23400: Fix lsa crash bug #4683. The "names" enum struct
in a lookup_sidX reply isn't optional - like the lookup_sidX query it needs to be defined in the struct. All this will go away with PIDL (thank goodness....). Jerry - I think this is a showstopper to be merged for 3.0.25b. I'll be watching the build farm to see if anything broke. Jeremy. (This used to be commit 9300b92f7a51eb80fdc039d8dad23ea9ce82aa8f)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/rpc_lsa.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/rpc_lsa.h b/source3/include/rpc_lsa.h
index 28dea21977..1d575c8955 100644
--- a/source3/include/rpc_lsa.h
+++ b/source3/include/rpc_lsa.h
@@ -515,7 +515,7 @@ typedef struct lsa_r_lookup_sids
uint32 ptr_dom_ref;
DOM_R_REF *dom_ref; /* domain reference info */
- LSA_TRANS_NAME_ENUM *names;
+ LSA_TRANS_NAME_ENUM names;
uint32 mapped_count;
NTSTATUS status; /* return code */
@@ -541,7 +541,7 @@ typedef struct lsa_r_lookup_sids2
uint32 ptr_dom_ref;
DOM_R_REF *dom_ref; /* domain reference info */
- LSA_TRANS_NAME_ENUM2 *names;
+ LSA_TRANS_NAME_ENUM2 names;
uint32 mapped_count;
NTSTATUS status; /* return code */
@@ -566,7 +566,7 @@ typedef struct lsa_r_lookup_sids3
uint32 ptr_dom_ref;
DOM_R_REF *dom_ref; /* domain reference info */
- LSA_TRANS_NAME_ENUM2 *names;
+ LSA_TRANS_NAME_ENUM2 names;
uint32 mapped_count;
NTSTATUS status; /* return code */