Ignore:
Timestamp:
Aug 2, 2010, 6:40:21 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.5: vendor update to 3.5.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/rpc_server/srv_winreg_nt.c

    r427 r478  
    231231                return WERR_BADFID;
    232232
     233
     234
     235
     236
    233237        if ((r->out.data_length == NULL) || (r->out.type == NULL) || (r->out.data_size == NULL)) {
    234238                return WERR_INVALID_PARAM;
     
    317321                *r->out.data_length = outbuf_size;
    318322                *r->out.data_size = outbuf_size;
    319                 memcpy(r->out.data, outbuf, outbuf_size);
     323                if (r->out.data) {
     324                        memcpy(r->out.data, outbuf, outbuf_size);
     325                }
    320326                status = WERR_OK;
    321327        }
     
    953959WERROR _winreg_NotifyChangeKeyValue(pipes_struct *p, struct winreg_NotifyChangeKeyValue *r)
    954960{
     961
     962
     963
     964
     965
     966
     967
     968
     969
    955970        /* fill in your code here if you think this call should
    956971           do anything */
     
    961976
    962977/*******************************************************************
    963  _winreg_QueryMultipleValues
    964  ********************************************************************/
    965 
    966 WERROR _winreg_QueryMultipleValues(pipes_struct *p, struct winreg_QueryMultipleValues *r)
     978 _winreg_QueryMultipleValues
     979 ********************************************************************/
     980
     981WERROR _winreg_QueryMultipleValues *r)
    967982{
    968983        /* fill in your code here if you think this call should
     
    973988}
    974989
    975 /*******************************************************************
    976  _winreg_QueryMultipleValues2
    977  ********************************************************************/
    978 
    979 WERROR _winreg_QueryMultipleValues2(pipes_struct *p, struct winreg_QueryMultipleValues2 *r)
    980 {
    981         /* fill in your code here if you think this call should
    982            do anything */
    983 
    984         p->rng_fault_state = True;
    985         return WERR_NOT_SUPPORTED;
    986 }
    987 
Note: See TracChangeset for help on using the changeset viewer.