mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 17:28:29 +00:00
Merge pull request #76 from crtxcr/bounds_check_fix
Fixed bound checks for #74
This commit is contained in:
commit
962c8985b7
1 changed files with 2 additions and 2 deletions
|
@ -1001,9 +1001,9 @@ inline std::string decode_url(const std::string& s)
|
|||
{
|
||||
std::string result;
|
||||
|
||||
for (size_t i = 0; s[i]; i++) {
|
||||
for (size_t i = 0; i < s.size(); i++) {
|
||||
if (s[i] == '%' && i + 1 < s.size()) {
|
||||
if (s[i + 1] && s[i + 1] == 'u') {
|
||||
if (s[i + 1] == 'u') {
|
||||
int val = 0;
|
||||
if (from_hex_to_i(s, i + 2, 4, val)) {
|
||||
// 4 digits Unicode codes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue