Changeset 746 for vendor/current/source3/printing/load.c
- Timestamp:
- Nov 27, 2012, 4:56:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/printing/load.c
r740 r746 31 31 char *str; 32 32 char *saveptr; 33 char *auto_serv = NULL; 33 34 34 35 if (pnum < 0) … … 39 40 return; 40 41 41 if ((str = SMB_STRDUP(lp_auto_services())) == NULL) 42 auto_serv = lp_auto_services(); 43 str = SMB_STRDUP(auto_serv); 44 TALLOC_FREE(auto_serv); 45 if (str == NULL) { 42 46 return; 47 } 43 48 44 49 for (p = strtok_r(str, LIST_SEP, &saveptr); p;
Note:
See TracChangeset
for help on using the changeset viewer.