diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-02-12 12:15:41 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-12 12:15:41 +0000 |
| commit | c7d096620138199b06175ae57fd2385d3cb1ee63 (patch) | |
| tree | 8016857712766824169a9d66c491f7ea882ee432 /lib/multi.c | |
| parent | cf491357b650d6520a71df5892ba4c32220af242 (diff) | |
- Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle
that has an easy handle present in the "closure" list pending closure.
Diffstat (limited to 'lib/multi.c')
| -rw-r--r-- | lib/multi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c index b501f296f..d32172288 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -396,6 +396,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle, break; /* no need to continue since this handle can only be present once in the list */ } + prev = cl; cl = next; } |
