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
e8baa332
Commit
e8baa332
authored
15 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
fix shadow definition of outp.
parent
39704bec
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/ssluse.c
+8
-8
8 additions, 8 deletions
lib/ssluse.c
with
8 additions
and
8 deletions
lib/ssluse.c
+
8
−
8
View file @
e8baa332
...
...
@@ -1722,29 +1722,29 @@ static CURLcode push_certinfo_len(struct SessionHandle *data,
size_t
valuelen
)
{
struct
curl_certinfo
*
ci
=
&
data
->
info
.
certs
;
char
*
outp
;
char
*
outp
ut
;
struct
curl_slist
*
nl
;
CURLcode
res
=
CURLE_OK
;
size_t
labellen
=
strlen
(
label
);
size_t
outlen
=
labellen
+
1
+
valuelen
+
1
;
/* label:value\0 */
outp
=
malloc
(
outlen
);
if
(
!
outp
)
outp
ut
=
malloc
(
outlen
);
if
(
!
outp
ut
)
return
CURLE_OUT_OF_MEMORY
;
/* sprintf the label and colon */
snprintf
(
outp
,
outlen
,
"%s:"
,
label
);
snprintf
(
outp
ut
,
outlen
,
"%s:"
,
label
);
/* memcpy the value (it might not be zero terminated) */
memcpy
(
&
outp
[
labellen
+
1
],
value
,
valuelen
);
memcpy
(
&
outp
ut
[
labellen
+
1
],
value
,
valuelen
);
/* zero terminate the output */
outp
[
labellen
+
1
+
valuelen
]
=
0
;
outp
ut
[
labellen
+
1
+
valuelen
]
=
0
;
/* TODO: we should rather introduce an internal API that can do the
equivalent of curl_slist_append but doesn't strdup() the given data as
like in this place the extra malloc/free is totally pointless */
nl
=
curl_slist_append
(
ci
->
certinfo
[
certnum
],
outp
);
nl
=
curl_slist_append
(
ci
->
certinfo
[
certnum
],
outp
ut
);
if
(
!
nl
)
{
curl_slist_free_all
(
ci
->
certinfo
[
certnum
]);
res
=
CURLE_OUT_OF_MEMORY
;
...
...
@@ -1752,7 +1752,7 @@ static CURLcode push_certinfo_len(struct SessionHandle *data,
else
ci
->
certinfo
[
certnum
]
=
nl
;
free
(
outp
);
free
(
outp
ut
);
return
res
;
}
...
...
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