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
65ee4e45
Commit
65ee4e45
authored
16 years ago
by
Dan Fandrich
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a memory leak in the command-line tool that caused a valgrind error.
parent
5304b133
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+2
-0
2 additions, 0 deletions
CHANGES
src/main.c
+2
-0
2 additions, 0 deletions
src/main.c
with
4 additions
and
0 deletions
CHANGES
+
2
−
0
View file @
65ee4e45
...
...
@@ -9,6 +9,8 @@
Daniel Fandrich (18 Jun 2008)
- Added SSH failure test cases 628-632
- Fixed a memory leak in the command-line tool that caused a valgrind error.
Daniel Stenberg (18 Jun 2008)
- Rob Crittenden brought a fix for the NSS layer that makes libcurl no longer
always fire up a new connection rather than using the existing one when the
...
...
This diff is collapsed.
Click to expand it.
src/main.c
+
2
−
0
View file @
65ee4e45
...
...
@@ -3646,6 +3646,8 @@ static void free_config_fields(struct Configurable *config)
free
(
config
->
pubkey
);
if
(
config
->
referer
)
free
(
config
->
referer
);
if
(
config
->
hostpubmd5
)
free
(
config
->
hostpubmd5
);
curl_slist_free_all
(
config
->
quote
);
/* checks for config->quote == NULL */
curl_slist_free_all
(
config
->
prequote
);
...
...
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