Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:dirkmueller:acdc:sp5-rebuild
kdump.21348
kdump-do-not-iterate-past-end-of-string.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File kdump-do-not-iterate-past-end-of-string.patch of Package kdump.21348
Date: Fri May 28 11:30:48 2021 +0200 From: Petr Tesarik <ptesarik@suse.com> Subject: URLParser::extractAuthority(): Do not iterate past end of string References: bsc#1186037 Upstream: merged Git-commit: 208ed364ac926f800f37874d08e5b2c26547974e If there is no '/', '?' or '#' at the end of the authority part of the URL, kdumptool must not crash. Signed-off-by: Petr Tesarik <ptesarik@suse.com> --- kdumptool/urlparser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/kdumptool/urlparser.cc +++ b/kdumptool/urlparser.cc @@ -119,7 +119,7 @@ string URLParser::extractAuthority(strin it += 2; string::iterator const start = it; - while (*it != '/' && *it != '?' && *it != '#') + while (it != end && *it != '/' && *it != '?' && *it != '#') ++it; return string(start, it);
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor