google-protobuf 3.15.4 → 3.15.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/ruby-upb.c +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 834914a85c333f5979fdbca83b42bfa085c863a3e135505a89d3e3578bc27e9c
|
4
|
+
data.tar.gz: ad2bb7e772b4434ae1c69a9b84dc9502f7d2dcb943354451b90a4cb6933146f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dac67b5e064c427291cfc447a056a0d41af5956e781690980a9857eaa34ce718ab134ac95cf917988adb6ae843804c8c9b934f3912618c1c07142d9d0447183
|
7
|
+
data.tar.gz: 69347cb100d0effe976e85369c30068b8a9b768ce0e35572fcebe369b650fd8d4faa50e62d3a504a71ab1c8395e3eec5d484a0c21b3e6354b6dd2e5358a44a49
|
@@ -6663,10 +6663,9 @@ void upb_array_set(upb_array *arr, size_t i, upb_msgval val) {
|
|
6663
6663
|
}
|
6664
6664
|
|
6665
6665
|
bool upb_array_append(upb_array *arr, upb_msgval val, upb_arena *arena) {
|
6666
|
-
if (!
|
6666
|
+
if (!upb_array_resize(arr, arr->len + 1, arena)) {
|
6667
6667
|
return false;
|
6668
6668
|
}
|
6669
|
-
arr->len++;
|
6670
6669
|
upb_array_set(arr, arr->len - 1, val);
|
6671
6670
|
return true;
|
6672
6671
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.15.
|
4
|
+
version: 3.15.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
@@ -123,7 +123,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
123
123
|
licenses:
|
124
124
|
- BSD-3-Clause
|
125
125
|
metadata:
|
126
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.
|
126
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.5/ruby
|
127
127
|
post_install_message:
|
128
128
|
rdoc_options: []
|
129
129
|
require_paths:
|