diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-04-28 14:01:02 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-04-28 14:01:02 +0000 |
commit | 63602d15afe96206e1fdcea4d2b9014582aa41aa (patch) | |
tree | 47e1baa898afbf0f8894d0daef768367c942f271 /source3/libsmb | |
parent | 3c71214d47313e96baedf7b9a27507bc21eed01a (diff) | |
download | samba-63602d15afe96206e1fdcea4d2b9014582aa41aa.tar.gz samba-63602d15afe96206e1fdcea4d2b9014582aa41aa.tar.bz2 samba-63602d15afe96206e1fdcea4d2b9014582aa41aa.zip |
- fixed some compiler warnings
- fixed slprintf and vsprintf macros
(This used to be commit c986a3c51e8cdbc1230edbe0f4a91138c4ada29d)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clisecdesc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clisecdesc.c b/source3/libsmb/clisecdesc.c index 0b52d62513..6824a0edf4 100644 --- a/source3/libsmb/clisecdesc.c +++ b/source3/libsmb/clisecdesc.c @@ -33,7 +33,7 @@ SEC_DESC *cli_query_secdesc(struct cli_state *cli,int fd) char param[8]; char *rparam=NULL, *rdata=NULL; int rparam_count=0, rdata_count=0; - TALLOC_CTX *mem_ctx; + TALLOC_CTX *mem_ctx=NULL; prs_struct pd; SEC_DESC *psd = NULL; |