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
7d8cd590
Commit
7d8cd590
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
use calloc instead of malloc and we won't have to memset() the struct
parent
1056d2d2
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/cookie.c
+1
-4
1 addition, 4 deletions
lib/cookie.c
with
1 addition
and
4 deletions
lib/cookie.c
+
1
−
4
View file @
7d8cd590
...
...
@@ -158,13 +158,10 @@ Curl_cookie_add(struct SessionHandle *data,
bool
badcookie
=
FALSE
;
/* cookies are good by default. mmmmm yummy */
/* First, alloc and init a new struct for it */
co
=
(
struct
Cookie
*
)
m
alloc
(
sizeof
(
struct
Cookie
));
co
=
(
struct
Cookie
*
)
c
alloc
(
sizeof
(
struct
Cookie
)
,
1
);
if
(
!
co
)
return
NULL
;
/* bail out if we're this low on memory */
/* clear the whole struct first */
memset
(
co
,
0
,
sizeof
(
struct
Cookie
));
if
(
httpheader
)
{
/* This line was read off a HTTP-header */
char
*
sep
;
...
...
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