Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
1045b8d3
Commit
1045b8d3
authored
18 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
- Shmulik Regev found a memory leak in re-used HTTPS connections, at least
when the multi interface was used.
parent
d2bdad59
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+3
-0
3 additions, 0 deletions
CHANGES
RELEASE-NOTES
+1
-0
1 addition, 0 deletions
RELEASE-NOTES
lib/url.c
+2
-0
2 additions, 0 deletions
lib/url.c
with
6 additions
and
0 deletions
CHANGES
+
3
−
0
View file @
1045b8d3
...
...
@@ -7,6 +7,9 @@
Changelog
Daniel (19 February 2007)
- Shmulik Regev found a memory leak in re-used HTTPS connections, at least
when the multi interface was used.
- Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and
5).
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
1
−
0
View file @
1045b8d3
...
...
@@ -25,6 +25,7 @@ This release includes the following bugfixes:
o CURLOPT_RANGE set to NULL resets the range for FTP
o curl_multi_remove_handle() rare crash
o passive FTP transfers work with SOCKS
o multi interface HTTPS connection re-use memory leak
This release includes the following known bugs:
...
...
This diff is collapsed.
Click to expand it.
lib/url.c
+
2
−
0
View file @
1045b8d3
...
...
@@ -1786,6 +1786,8 @@ static void conn_free(struct connectdata *conn)
Curl_destroy_thread_data
(
&
conn
->
async
);
#endif
Curl_ssl_close
(
conn
);
Curl_free_ssl_config
(
&
conn
->
ssl_config
);
free
(
conn
);
/* free all the connection oriented data */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment