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

Samba Server: updated vendor to 3.6.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/printing/load.c

    r740 r746  
    3131        char *str;
    3232        char *saveptr;
     33        char *auto_serv = NULL;
    3334
    3435        if (pnum < 0)
     
    3940                return;
    4041
    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) {
    4246                return;
     47        }
    4348
    4449        for (p = strtok_r(str, LIST_SEP, &saveptr); p;
Note: See TracChangeset for help on using the changeset viewer.