diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-01 21:52:49 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-01 21:52:49 +0000 |
commit | 8ff6458a3e568e759969fd1a9c827c4b47008cfb (patch) | |
tree | 8f61d6a1f60ad1a407fed09c4e543b7aefb73741 /source3/rpc_parse/parse_misc.c | |
parent | b9fedcb2de5612bdb4e763fe0788e1a4a9c16d33 (diff) | |
download | samba-8ff6458a3e568e759969fd1a9c827c4b47008cfb.tar.gz samba-8ff6458a3e568e759969fd1a9c827c4b47008cfb.tar.xz samba-8ff6458a3e568e759969fd1a9c827c4b47008cfb.zip |
More insure found memory leak and corruption fixes.
Jeremy.
(This used to be commit 3cdcfa6325b9cd2d7f7c90c4b2d1c6ec73fc2f6d)
Diffstat (limited to 'source3/rpc_parse/parse_misc.c')
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index da2aa4450e..fe2778a356 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -618,6 +618,15 @@ BOOL smb_io_buffer5(char *desc, BUFFER5 *buf5, prs_struct *ps, int depth) } /******************************************************************* + Frees a BUFFER5 structure (just the malloced part). +********************************************************************/ + +void free_buffer5(BUFFER5 *buf5) +{ + safe_free(buf5->buffer); +} + +/******************************************************************* Inits a BUFFER2 structure. ********************************************************************/ |