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
2179e6e7
Commit
2179e6e7
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
prevent memory leak when built SSL disabled
parent
7dde3d18
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/sslgen.c
+6
-0
6 additions, 0 deletions
lib/sslgen.c
with
6 additions
and
0 deletions
lib/sslgen.c
+
6
−
0
View file @
2179e6e7
...
...
@@ -499,6 +499,7 @@ int Curl_ssl_recv(struct connectdata *conn, /* connection data */
*/
CURLcode
Curl_ssl_initsessions
(
struct
SessionHandle
*
data
,
long
amount
)
{
#ifdef USE_SSL
struct
curl_ssl_session
*
session
;
if
(
data
->
state
.
session
)
...
...
@@ -517,6 +518,11 @@ CURLcode Curl_ssl_initsessions(struct SessionHandle *data, long amount)
data
->
set
.
ssl
.
numsessions
=
amount
;
data
->
state
.
session
=
session
;
data
->
state
.
sessionage
=
1
;
/* this is brand new */
#else
/* without SSL, do nothing */
(
void
)
data
;
(
void
)
amount
;
#endif
return
CURLE_OK
;
}
...
...
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