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
16ae283f
Commit
16ae283f
authored
15 years ago
by
Yang Tse
Browse files
Options
Downloads
Patches
Plain Diff
initialize fread callback pointer to avoid compiler warning
parent
312600fe
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+6
-1
6 additions, 1 deletion
CHANGES
RELEASE-NOTES
+1
-1
1 addition, 1 deletion
RELEASE-NOTES
lib/formdata.c
+1
-0
1 addition, 0 deletions
lib/formdata.c
with
8 additions
and
2 deletions
CHANGES
+
6
−
1
View file @
16ae283f
...
...
@@ -6,6 +6,11 @@
Changelog
Yang Tse (9 Jun 2009)
- Daniel Steinberg pointed out that Curl_FormInit() in formdata.c was not
initializing the fread callback pointer and this triggered a compiler
warning, also provided a friendly suggestion on how to fix it.
Daniel Stenberg (8 Jun 2009)
- Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcount
issue with client certs that caused issues like segfaults.
...
...
@@ -21,7 +26,7 @@ Yang Tse (8 Jun 2009)
- Igor Novoseltsev adjusted Makefile.vxworks to get sources and headers
included from Makefile.inc, and provided docs\INSTALL VxWorks section.
I removed buildconf.bat from release and daily snapshot archives. This
-
I removed buildconf.bat from release and daily snapshot archives. This
file is only for CVS tree checkout builds.
Daniel Stenberg (8 Jun 2009)
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
1
−
1
View file @
16ae283f
...
...
@@ -36,6 +36,6 @@ advice from friends like these:
Yang Tse, Daniel Fandrich, Kamil Dudka, Caolan McNamara, Frank McGeough,
Andre Guibert de Bruet, Mike Crowe, Claes Jakobsson, John E. Malmberg,
Aaron Oneal, Igor Novoseltsev, Eric Wong, Bill Hoffman
Aaron Oneal, Igor Novoseltsev, Eric Wong, Bill Hoffman
, Daniel Steinberg,
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
lib/formdata.c
+
1
−
0
View file @
16ae283f
...
...
@@ -1425,6 +1425,7 @@ int Curl_FormInit(struct Form *form, struct FormData *formdata )
form
->
data
=
formdata
;
form
->
sent
=
0
;
form
->
fp
=
NULL
;
form
->
fread_func
=
ZERO_NULL
;
return
0
;
}
...
...
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