Ignore:
Timestamp:
May 27, 2009, 9:09:42 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/libsmb/async_smb.c

    r204 r232  
    319319{
    320320        struct cli_state *cli = (struct cli_state *)p;
    321         struct cli_request *req;
     321        struct cli_request *req, *next;
    322322        NTSTATUS status;
    323323
     
    422422
    423423 sock_error:
    424         for (req = cli->outstanding_requests; req; req = req->next) {
     424        for (req = cli->outstanding_requests; req; req = next) {
     425                next = req;
    425426                async_req_error(req->async, status);
    426427        }
Note: See TracChangeset for help on using the changeset viewer.