Changeset 478 for vendor/current/source3/rpc_server/srv_winreg_nt.c
- Timestamp:
- Aug 2, 2010, 6:40:21 PM (15 years ago)
- File:
-
- 1 edited
-
vendor/current/source3/rpc_server/srv_winreg_nt.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/rpc_server/srv_winreg_nt.c
r427 r478 231 231 return WERR_BADFID; 232 232 233 234 235 236 233 237 if ((r->out.data_length == NULL) || (r->out.type == NULL) || (r->out.data_size == NULL)) { 234 238 return WERR_INVALID_PARAM; … … 317 321 *r->out.data_length = outbuf_size; 318 322 *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 } 320 326 status = WERR_OK; 321 327 } … … 953 959 WERROR _winreg_NotifyChangeKeyValue(pipes_struct *p, struct winreg_NotifyChangeKeyValue *r) 954 960 { 961 962 963 964 965 966 967 968 969 955 970 /* fill in your code here if you think this call should 956 971 do anything */ … … 961 976 962 977 /******************************************************************* 963 _winreg_QueryMultipleValues 964 ********************************************************************/ 965 966 WERROR _winreg_QueryMultipleValues (pipes_struct *p, struct winreg_QueryMultipleValues*r)978 _winreg_QueryMultipleValues 979 ********************************************************************/ 980 981 WERROR _winreg_QueryMultipleValues *r) 967 982 { 968 983 /* fill in your code here if you think this call should … … 973 988 } 974 989 975 /*******************************************************************976 _winreg_QueryMultipleValues2977 ********************************************************************/978 979 WERROR _winreg_QueryMultipleValues2(pipes_struct *p, struct winreg_QueryMultipleValues2 *r)980 {981 /* fill in your code here if you think this call should982 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.
