mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
deps: update histogram to 0.11.9
PR-URL: https://github.com/nodejs/node/pull/59689 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
This commit is contained in:
parent
910c8796f9
commit
3c461fa4a0
|
|
@ -7,6 +7,6 @@
|
||||||
#ifndef HDR_HISTOGRAM_VERSION_H
|
#ifndef HDR_HISTOGRAM_VERSION_H
|
||||||
#define HDR_HISTOGRAM_VERSION_H
|
#define HDR_HISTOGRAM_VERSION_H
|
||||||
|
|
||||||
#define HDR_HISTOGRAM_VERSION "0.11.8"
|
#define HDR_HISTOGRAM_VERSION "0.11.9"
|
||||||
|
|
||||||
#endif // HDR_HISTOGRAM_VERSION_H
|
#endif // HDR_HISTOGRAM_VERSION_H
|
||||||
|
|
|
||||||
5
deps/histogram/src/hdr_histogram.c
vendored
5
deps/histogram/src/hdr_histogram.c
vendored
|
|
@ -492,13 +492,12 @@ bool hdr_record_values(struct hdr_histogram* h, int64_t value, int64_t count)
|
||||||
{
|
{
|
||||||
int32_t counts_index;
|
int32_t counts_index;
|
||||||
|
|
||||||
if (value < 0)
|
if (value < 0 || h->highest_trackable_value < value)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
counts_index = counts_index_for(h, value);
|
counts_index = counts_index_for(h, value);
|
||||||
|
|
||||||
if (counts_index < 0 || h->counts_len <= counts_index)
|
if (counts_index < 0 || h->counts_len <= counts_index)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -514,7 +513,7 @@ bool hdr_record_values_atomic(struct hdr_histogram* h, int64_t value, int64_t co
|
||||||
{
|
{
|
||||||
int32_t counts_index;
|
int32_t counts_index;
|
||||||
|
|
||||||
if (value < 0)
|
if (value < 0 || h->highest_trackable_value < value)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user