You've already forked cpp-httplib
Fix #2287
This commit is contained in:
@@ -2931,7 +2931,7 @@ inline bool is_field_value(const std::string &s) { return is_field_content(s); }
|
|||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
inline bool is_hex(char c, int &v) {
|
inline bool is_hex(char c, int &v) {
|
||||||
if (0x20 <= c && isdigit(c)) {
|
if (isdigit(c)) {
|
||||||
v = c - '0';
|
v = c - '0';
|
||||||
return true;
|
return true;
|
||||||
} else if ('A' <= c && c <= 'F') {
|
} else if ('A' <= c && c <= 'F') {
|
||||||
|
|||||||
Reference in New Issue
Block a user