Browse Source

Intermediate changes

robot-piglet 10 months ago
parent
commit
444e459c8b

+ 2 - 2
contrib/restricted/boost/concept_check/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/concept_check/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/concept_check/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/config

+ 2 - 2
contrib/restricted/boost/coroutine/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/coroutine/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/coroutine/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/assert

+ 2 - 2
contrib/restricted/boost/dynamic_bitset/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/dynamic_bitset/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/dynamic_bitset/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/assert

+ 2 - 2
contrib/restricted/boost/function_types/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/function_types/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/function_types/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/config

+ 2 - 2
contrib/restricted/boost/graph/ya.make

@@ -10,9 +10,9 @@ LICENSE(
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/graph/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/graph/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/algorithm

+ 2 - 2
contrib/restricted/boost/numeric_conversion/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/numeric_conversion/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/numeric_conversion/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/config

+ 2 - 2
contrib/restricted/boost/property_map/ya.make

@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
 
 LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
 
-VERSION(1.84.0)
+VERSION(1.85.0)
 
-ORIGINAL_SOURCE(https://github.com/boostorg/property_map/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/property_map/archive/boost-1.85.0.tar.gz)
 
 PEERDIR(
     contrib/restricted/boost/any

+ 2 - 2
library/cpp/ytalloc/impl/core-inl.h

@@ -251,7 +251,7 @@ void AssertBlobState(T* header, E expectedState)
     auto actualState = header->State;
     if (Y_UNLIKELY(actualState != expectedState)) {
         char message[256];
-        sprintf(message, "Invalid blob header state at %p: expected %" PRIx64 ", actual %" PRIx64,
+        snprintf(message, sizeof(message), "Invalid blob header state at %p: expected %" PRIx64 ", actual %" PRIx64,
             header,
             static_cast<ui64>(expectedState),
             static_cast<ui64>(actualState));
@@ -2678,7 +2678,7 @@ public:
         auto actualState = state;
         if (Y_UNLIKELY(actualState != expectedState)) {
             char message[256];
-            sprintf(message, "Invalid small chunk state at %p: expected %" PRIx8 ", actual %" PRIx8,
+            snprintf(message, sizeof(message), "Invalid small chunk state at %p: expected %" PRIx8 ", actual %" PRIx8,
                 ptr,
                 static_cast<ui8>(expectedState),
                 static_cast<ui8>(actualState));