mirror of
https://github.com/monero-project/monero.git
synced 2025-08-05 22:44:13 -04:00
Fixed string_ref usage bug in epee::from_hex::vector
This commit is contained in:
parent
7c74e1919e
commit
f9441c5759
2 changed files with 6 additions and 3 deletions
|
@ -141,7 +141,7 @@ namespace epee
|
|||
result.reserve(count / 2);
|
||||
|
||||
// the data to work with (std::string is always null-terminated)
|
||||
auto data = src.data();
|
||||
auto data = src.begin();
|
||||
|
||||
// convert a single hex character to an unsigned integer
|
||||
auto char_to_int = [](const char *input) {
|
||||
|
@ -167,9 +167,9 @@ namespace epee
|
|||
};
|
||||
|
||||
// keep going until we reach the end
|
||||
while (data[0] != '\0') {
|
||||
while (data != src.end()) {
|
||||
// skip unwanted characters
|
||||
if (!include(data[0])) {
|
||||
if (!include(*data)) {
|
||||
++data;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue