Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source4/rpc_server/echo/rpc_echo.c

    r414 r745  
    4040        }
    4141
    42         r->out.out_data = talloc_memdup(mem_ctx, r->in.in_data, r->in.len);
     42        r->out.out_data = (uint8_t *)talloc_memdup(mem_ctx, r->in.in_data, r->in.len);
    4343        if (!r->out.out_data) {
    4444                return NT_STATUS_NO_MEMORY;
     
    5555static NTSTATUS dcesrv_echo_SourceData(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_SourceData *r)
    5656{
    57         int i;
     57        unsigned int i;
    5858
    5959        r->out.data = talloc_array(mem_ctx, uint8_t, r->in.len);
Note: See TracChangeset for help on using the changeset viewer.