aboutsummaryrefslogtreecommitdiff
path: root/RELEASE-NOTES
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2016-06-03 11:26:20 +0200
committerKamil Dudka <kdudka@redhat.com>2016-06-03 13:07:22 +0200
commit584d0121c353ed855115c39f6cbc009854018029 (patch)
treecb61f1ffb7f1a9ebf04d08ad133517622b9ef0ce /RELEASE-NOTES
parent873b4346bafdec388fa4bd61ebdee0161da661a0 (diff)
downloadgnurl-584d0121c353ed855115c39f6cbc009854018029.tar.gz
gnurl-584d0121c353ed855115c39f6cbc009854018029.tar.bz2
gnurl-584d0121c353ed855115c39f6cbc009854018029.zip
tool_urlglob: fix off-by-one error in glob_parse()
... causing SIGSEGV while parsing URL with too many globs. Minimal example: $ curl $(for i in $(seq 101); do printf '{a}'; done) Reported-by: Romain Coltel Bug: https://bugzilla.redhat.com/1340757
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r--RELEASE-NOTES2
1 files changed, 2 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 6cdd0e725..e20319c2a 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -19,6 +19,7 @@ This release includes the following bugfixes:
o URL parser: allow URLs to use one, two or three slashes [6]
o curl: fix -q [regression] [7]
o openssl: Use correct buffer sizes for error messages [8]
+ o curl: fix SIGSEGV while parsing URL with too many globs [9]
This release includes the following known bugs:
@@ -43,3 +44,4 @@ References to bug reports and discussions on issues:
[6] = https://curl.haxx.se/bug/?i=791
[7] = https://curl.haxx.se/bug/?i=842
[8] = https://curl.haxx.se/bug/?i=844
+ [9] = https://bugzilla.redhat.com/1340757