1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00

r5808: removing unneeded structure field from RPC_BUFFER

This commit is contained in:
Gerald Carter 2005-03-15 20:46:26 +00:00 committed by Gerald (Jerry) Carter
parent 2dae527e21
commit 9b0bfd7e6f
2 changed files with 0 additions and 28 deletions

View File

@ -25,9 +25,6 @@
#define _RPC_BUFFER_H
typedef struct {
#if 0
uint32 ptr;
#endif
uint32 size;
prs_struct prs;
uint32 struct_start;

View File

@ -33,9 +33,6 @@
**********************************************************************/
void rpcbuf_init(RPC_BUFFER *buffer, uint32 size, TALLOC_CTX *ctx)
{
#if 0
buffer->ptr = (size != 0);
#endif
buffer->size = size;
buffer->string_at_end = size;
prs_init(&buffer->prs, size, ctx, MARSHALL);
@ -56,19 +53,6 @@ BOOL prs_rpcbuffer(const char *desc, prs_struct *ps, int depth, RPC_BUFFER *buff
buffer->size=0;
buffer->string_at_end=0;
#if 0
if (buffer->ptr==0) {
/*
* JRA. I'm not sure if the data in here is in big-endian format if
* the client is big-endian. Leave as default (little endian) for now.
*/
if (!prs_init(&buffer->prs, 0, prs_get_mem_context(ps), UNMARSHALL))
return False;
return True;
}
#endif
if (!prs_uint32("size", ps, depth, &buffer->size))
return False;
@ -96,15 +80,6 @@ BOOL prs_rpcbuffer(const char *desc, prs_struct *ps, int depth, RPC_BUFFER *buff
else {
BOOL ret = False;
#if 0
/* writing */
if (buffer->ptr==0) {
/* We have finished with the data in buffer->prs - free it. */
prs_mem_free(&buffer->prs);
return True;
}
#endif
if (!prs_uint32("size", ps, depth, &buffer->size))
goto out;