*** empty log message ***
This commit is contained in:
parent
718cc17f74
commit
45e764fee4
|
@ -60,7 +60,7 @@ example client.</p>
|
||||||
<div class="section" id="acknowledgements">
|
<div class="section" id="acknowledgements">
|
||||||
<h1><a name="acknowledgements">Acknowledgements</a></h1>
|
<h1><a name="acknowledgements">Acknowledgements</a></h1>
|
||||||
<p>Written by Arvid Norberg. Copyright (c) 2003</p>
|
<p>Written by Arvid Norberg. Copyright (c) 2003</p>
|
||||||
<p>Contributions by Magnus Jonsson and Daniel Wallin</p>
|
<p>Contributions by Magnus Jonsson, Daniel Wallin and Cory Nelson</p>
|
||||||
<p>Thanks to Reimond Retz for bugfixes, suggestions and testing</p>
|
<p>Thanks to Reimond Retz for bugfixes, suggestions and testing</p>
|
||||||
<p>Project is hosted by sourceforge.</p>
|
<p>Project is hosted by sourceforge.</p>
|
||||||
<p><a class="reference" href="http://sourceforge.net"><img alt="sf_logo" src="http://sourceforge.net/sflogo.php?group_id=7994" /></a></p>
|
<p><a class="reference" href="http://sourceforge.net"><img alt="sf_logo" src="http://sourceforge.net/sflogo.php?group_id=7994" /></a></p>
|
||||||
|
|
|
@ -62,7 +62,7 @@ Acknowledgements
|
||||||
|
|
||||||
Written by Arvid Norberg. Copyright (c) 2003
|
Written by Arvid Norberg. Copyright (c) 2003
|
||||||
|
|
||||||
Contributions by Magnus Jonsson and Daniel Wallin
|
Contributions by Magnus Jonsson, Daniel Wallin and Cory Nelson
|
||||||
|
|
||||||
Thanks to Reimond Retz for bugfixes, suggestions and testing
|
Thanks to Reimond Retz for bugfixes, suggestions and testing
|
||||||
|
|
||||||
|
|
|
@ -2490,7 +2490,7 @@ boost::filesystem::path::default_name_check(boost::filesystem::native);
|
||||||
<div class="section" id="acknowledgements">
|
<div class="section" id="acknowledgements">
|
||||||
<h1><a name="acknowledgements">acknowledgements</a></h1>
|
<h1><a name="acknowledgements">acknowledgements</a></h1>
|
||||||
<p>Written by Arvid Norberg. Copyright (c) 2003</p>
|
<p>Written by Arvid Norberg. Copyright (c) 2003</p>
|
||||||
<p>Contributions by Magnus Jonsson and Daniel Wallin</p>
|
<p>Contributions by Magnus Jonsson, Daniel Wallin and Cory Nelson</p>
|
||||||
<p>Thanks to Reimond Retz for bugfixes, suggestions and testing</p>
|
<p>Thanks to Reimond Retz for bugfixes, suggestions and testing</p>
|
||||||
<p>Thanks to <a class="reference" href="http://www.cs.umu.se">University of Umeå</a> for providing development and
|
<p>Thanks to <a class="reference" href="http://www.cs.umu.se">University of Umeå</a> for providing development and
|
||||||
test hardware.</p>
|
test hardware.</p>
|
||||||
|
|
|
@ -2483,7 +2483,7 @@ acknowledgements
|
||||||
|
|
||||||
Written by Arvid Norberg. Copyright (c) 2003
|
Written by Arvid Norberg. Copyright (c) 2003
|
||||||
|
|
||||||
Contributions by Magnus Jonsson and Daniel Wallin
|
Contributions by Magnus Jonsson, Daniel Wallin and Cory Nelson
|
||||||
|
|
||||||
Thanks to Reimond Retz for bugfixes, suggestions and testing
|
Thanks to Reimond Retz for bugfixes, suggestions and testing
|
||||||
|
|
||||||
|
|
|
@ -85,13 +85,15 @@ namespace libtorrent
|
||||||
std::string::const_iterator end
|
std::string::const_iterator end
|
||||||
= std::find(url.begin(), url.end(), ':');
|
= std::find(url.begin(), url.end(), ':');
|
||||||
|
|
||||||
if (end == url.end()) throw std::runtime_error("invalid url");
|
while ((*start == ' ' || *start == '\t') && start != end) ++start;
|
||||||
|
|
||||||
|
if (end == url.end()) throw std::runtime_error("invalid url: \"" + url + "\"");
|
||||||
++end;
|
++end;
|
||||||
if (end == url.end()) throw std::runtime_error("invalid url");
|
if (end == url.end()) throw std::runtime_error("invalid url: \"" + url + "\"");
|
||||||
if (*end != '/') throw std::runtime_error("invalid url");
|
if (*end != '/') throw std::runtime_error("invalid url: \"" + url + "\"");
|
||||||
++end;
|
++end;
|
||||||
if (end == url.end()) throw std::runtime_error("invalid url");
|
if (end == url.end()) throw std::runtime_error("invalid url: \"" + url + "\"");
|
||||||
if (*end != '/') throw std::runtime_error("invalid url");
|
if (*end != '/') throw std::runtime_error("invalid url: \"" + url + "\"");
|
||||||
++end;
|
++end;
|
||||||
start = end;
|
start = end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue