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_spoolss_nt.c

    r427 r478  
    42764276                             struct spoolss_EnumPrinters *r)
    42774277{
    4278         const char *name;
     4278        const char *name;
    42794279        WERROR result;
    42804280
     
    43044304         */
    43054305
    4306         name = talloc_strdup_upper(p->mem_ctx, r->in.server);
    4307         W_ERROR_HAVE_NO_MEMORY(name);
     4306        if (r->in.server) {
     4307                name = talloc_strdup_upper(p->mem_ctx, r->in.server);
     4308                W_ERROR_HAVE_NO_MEMORY(name);
     4309        }
    43084310
    43094311        switch (r->in.level) {
     
    74167418         */
    74177419
     7420
     7421
     7422
     7423
    74187424        if (r->in.flags != APD_COPY_NEW_FILES) {
    74197425                return WERR_ACCESS_DENIED;
Note: See TracChangeset for help on using the changeset viewer.