Changeset 221 for branches/samba-3.3.x/source/libsmb/async_smb.c
- Timestamp:
- May 24, 2009, 7:17:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/libsmb/async_smb.c
r206 r221 319 319 { 320 320 struct cli_state *cli = (struct cli_state *)p; 321 struct cli_request *req ;321 struct cli_request *req, *next; 322 322 NTSTATUS status; 323 323 … … 422 422 423 423 sock_error: 424 for (req = cli->outstanding_requests; req; req = req->next) { 424 for (req = cli->outstanding_requests; req; req = next) { 425 next = req; 425 426 async_req_error(req->async, status); 426 427 }
Note:
See TracChangeset
for help on using the changeset viewer.