mirror of https://github.com/nodejs/node.git
deps: update ada to 2.7.5
PR-URL: https://github.com/nodejs/node/pull/51542 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me>pull/51627/head
parent
ce5688782e
commit
a64a86650a
|
@ -1,4 +1,4 @@
|
|||
/* auto-generated on 2023-11-19 13:35:02 -0500. Do not edit! */
|
||||
/* auto-generated on 2024-01-22 09:15:53 -0500. Do not edit! */
|
||||
/* begin file src/ada.cpp */
|
||||
#include "ada.h"
|
||||
/* begin file src/checkers.cpp */
|
||||
|
@ -11277,7 +11277,7 @@ bool url::parse_ipv4(std::string_view input) {
|
|||
// We have the last value.
|
||||
// At this stage, ipv4 contains digit_count*8 bits.
|
||||
// So we have 32-digit_count*8 bits left.
|
||||
if (segment_result > (uint64_t(1) << (32 - digit_count * 8))) {
|
||||
if (segment_result >= (uint64_t(1) << (32 - digit_count * 8))) {
|
||||
return is_valid = false;
|
||||
}
|
||||
ipv4 <<= (32 - digit_count * 8);
|
||||
|
@ -14058,7 +14058,7 @@ bool url_aggregator::parse_ipv4(std::string_view input) {
|
|||
// We have the last value.
|
||||
// At this stage, ipv4 contains digit_count*8 bits.
|
||||
// So we have 32-digit_count*8 bits left.
|
||||
if (segment_result > (uint64_t(1) << (32 - digit_count * 8))) {
|
||||
if (segment_result >= (uint64_t(1) << (32 - digit_count * 8))) {
|
||||
return is_valid = false;
|
||||
}
|
||||
ipv4 <<= (32 - digit_count * 8);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* auto-generated on 2023-11-19 13:35:02 -0500. Do not edit! */
|
||||
/* auto-generated on 2024-01-22 09:15:53 -0500. Do not edit! */
|
||||
/* begin file include/ada.h */
|
||||
/**
|
||||
* @file ada.h
|
||||
|
@ -7078,14 +7078,14 @@ url_search_params_entries_iter::next() {
|
|||
#ifndef ADA_ADA_VERSION_H
|
||||
#define ADA_ADA_VERSION_H
|
||||
|
||||
#define ADA_VERSION "2.7.4"
|
||||
#define ADA_VERSION "2.7.5"
|
||||
|
||||
namespace ada {
|
||||
|
||||
enum {
|
||||
ADA_VERSION_MAJOR = 2,
|
||||
ADA_VERSION_MINOR = 7,
|
||||
ADA_VERSION_REVISION = 4,
|
||||
ADA_VERSION_REVISION = 5,
|
||||
};
|
||||
|
||||
} // namespace ada
|
||||
|
|
Loading…
Reference in New Issue