#
b4a2a966 |
| 11-Nov-2020 |
Nikita Popov |
Retain reference to share handle from curl handle Not keeping a reference will not result in use after free, because curl protects against it, but it will result in a memory leak, be
Retain reference to share handle from curl handle Not keeping a reference will not result in use after free, because curl protects against it, but it will result in a memory leak, because curl_share_cleanup() will fail. We should make sure that the share handle object stays alive as long as the curl handles use it.
show more ...
|