Changeset 773 for branches/samba-3.5.x/source3/lib
- Timestamp:
- Jul 2, 2013, 7:27:06 PM (12 years ago)
- Location:
- branches/samba-3.5.x/source3/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/lib/dummysmbd.c
r414 r773 29 29 } 30 30 31 int find_service( fstring service)31 int find_service(const char *service_in, fstring service) 32 32 { 33 33 return -1; -
branches/samba-3.5.x/source3/lib/os2helper.c
r698 r773 491 491 PFEA2LIST pfea2list = NULL; 492 492 char * p; 493 493 DEBUG(4,("unisetxattr : (%s:%d) %s %d\n", path ? path : "null", file, name, size)); 494 494 if ((!path && !file) || !name || (!value && size)) 495 495 { -
branches/samba-3.5.x/source3/lib/util_str.c
r599 r773 513 513 "called from [%s][%d]\n", fn, line)); 514 514 return NULL; 515 } 516 517 if (src == dest) { 518 return dest; 515 519 } 516 520 … … 2302 2306 int i; 2303 2307 2308 if (!name) { 2309 return false; 2310 } 2311 2304 2312 for ( i=0; i<max_len && name[i]; i++ ) { 2305 2313 /* fail if strchr_m() finds one of the invalid characters */ -
branches/samba-3.5.x/source3/lib/util_unistr.c
r414 r773 46 46 else 47 47 SAFE_FREE(upcase_table); 48 upcase_table = NULL; 48 49 } 49 50 … … 53 54 else 54 55 SAFE_FREE(lowcase_table); 56 lowcase_table = NULL; 55 57 } 56 58 … … 60 62 else 61 63 SAFE_FREE(valid_table); 64 valid_table = NULL; 62 65 } 63 66 initialized = false;
Note:
See TracChangeset
for help on using the changeset viewer.