Ignore:
Timestamp:
May 27, 2009, 11:39:15 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/lib/netapi/user.c

    r133 r233  
    900900        NTSTATUS status;
    901901        WERROR werr;
     902        WERROR werr_tmp;
     903
     904        *r->out.entries_read = 0;
    902905
    903906        ZERO_STRUCT(connect_handle);
     
    993996                                               &returned_size,
    994997                                               &info);
    995         if (!NT_STATUS_IS_OK(status)) {
    996                 werr = ntstatus_to_werror(status);
    997                 goto done;
    998         }
    999 
    1000         werr = convert_samr_dispinfo_to_NET_DISPLAY(ctx, &info,
    1001                                                     r->in.level,
    1002                                                     r->out.entries_read,
    1003                                                     r->out.buffer);
     998        werr = ntstatus_to_werror(status);
     999        if (NT_STATUS_IS_ERR(status)) {
     1000                goto done;
     1001        }
     1002
     1003        werr_tmp = convert_samr_dispinfo_to_NET_DISPLAY(ctx, &info,
     1004                                                        r->in.level,
     1005                                                        r->out.entries_read,
     1006                                                        r->out.buffer);
     1007        if (!W_ERROR_IS_OK(werr_tmp)) {
     1008                werr = werr_tmp;
     1009        }
    10041010 done:
    10051011        if (!cli) {
Note: See TracChangeset for help on using the changeset viewer.