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
30639ed7
Commit
30639ed7
authored
22 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Kjetil Jacobsen found out that setting CURLOPT_MAXCONNECTS to a value higher
than 5 could cause a segfault.
parent
9d02a39e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/url.c
+7
-0
7 additions, 0 deletions
lib/url.c
with
7 additions
and
0 deletions
lib/url.c
+
7
−
0
View file @
30639ed7
...
...
@@ -378,12 +378,19 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
Curl_disconnect
(
data
->
state
.
connects
[
i
]);
}
if
(
newconnects
)
{
int
i
;
newptr
=
(
struct
connectdata
**
)
realloc
(
data
->
state
.
connects
,
sizeof
(
struct
connectdata
*
)
*
newconnects
);
if
(
!
newptr
)
/* we closed a few connections in vain, but so what? */
return
CURLE_OUT_OF_MEMORY
;
/* nullify the newly added pointers */
for
(
i
=
data
->
state
.
numconnects
;
i
<
newconnects
;
i
++
)
{
newptr
[
i
]
=
NULL
;
}
data
->
state
.
connects
=
newptr
;
data
->
state
.
numconnects
=
newconnects
;
}
...
...
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