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
7012a4a2
Commit
7012a4a2
authored
20 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Rene Rebe fixed a -# crash when more data than expected was retrieved.
parent
40ab20a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+3
-0
3 additions, 0 deletions
CHANGES
RELEASE-NOTES
+3
-1
3 additions, 1 deletion
RELEASE-NOTES
src/main.c
+4
-0
4 additions, 0 deletions
src/main.c
with
10 additions
and
1 deletion
CHANGES
+
3
−
0
View file @
7012a4a2
...
...
@@ -7,6 +7,9 @@
Changelog
Daniel (4 March 2005)
- Rene Rebe fixed a -# crash when more data than expected was retrieved.
Daniel (22 February 2005)
- NTLM and ftp-krb4 buffer overflow fixed, as reported here:
http://www.securityfocus.com/archive/1/391042 and the CAN report here:
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
3
−
1
View file @
7012a4a2
...
...
@@ -16,6 +16,7 @@ This release includes the following changes:
This release includes the following bugfixes:
o -# crash when more data than expected was retrieved
o NTLM/krb4 buffer overflow fixed (CAN-2005-0490)
o proxy auth bug when following redirects to another host
o socket leak when local bind failed
...
...
@@ -37,6 +38,7 @@ This release would not have looked like this without help, code, reports and
advice from friends like these:
Gisle Vanem, David Byron, Marty Kuhrt, Maruko, Eric Vergnaud, Christopher
R. Palmer, Mike Dobbs, David in bug report #1124588, Ralph Mitchell
R. Palmer, Mike Dobbs, David in bug report #1124588, Ralph Mitchell,
Rene Rebe
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
src/main.c
+
4
−
0
View file @
7012a4a2
...
...
@@ -2610,6 +2610,10 @@ static int myprogress (void *clientp,
curl_off_t
point
=
(
curl_off_t
)
dlnow
+
(
curl_off_t
)
ulnow
+
bar
->
initial_size
;
/* we've come this far */
if
(
point
>
total
)
/* we have got more than the expected total! */
total
=
point
;
bar
->
calls
++
;
/* simply count invokes */
if
(
total
<
1
)
{
...
...
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