google-protobuf 3.21.8-x64-mingw32 → 3.21.9-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c19d86e37acbd6cd526d6b66951b46b4e8e2cec30dafb14d548daaea44128e5c
4
- data.tar.gz: 70c1619519b3c694012c41796fd0a1dd9fc98227e9c2234701a9136c0fcb9b5b
3
+ metadata.gz: 0ae2f66332de011193d45a72a1a003a472aa33fbfed901c3c912ad52c9e1dfa3
4
+ data.tar.gz: e46d4a4745c3edfca0db6d5ab3e0e70c3f0175eba8d7097485c00dfafde87d2e
5
5
  SHA512:
6
- metadata.gz: 297a091d5ee4cc38e69b0051877fc654626546768c2c3027d736e0d565753b01032290617a67741af81d44b3723c30743b350ff87944564e86a668f65b324424
7
- data.tar.gz: f7fd9736dd56d9973ce495c7fb059161a044f65491a13bb80ea5d0bb94b2ba5db826d9df245fc60fed7f9c7107927dc7c0674b954757ee04dc6f161bd0c8a19d
6
+ metadata.gz: ce0c23427930047d70b0d19ceb14551298922711911b397fb8fd68622da162b29d023cf1f758cd00ed30e541a00b74c712e19901b11b6f14386a89d66315839b
7
+ data.tar.gz: 29cd602dc9ef52271a6ed903bf7303752866b2b8425f31122f094b0e962f1cec5007a2917bf1a24c0537ee21e548cdeb0fc70d3497140acf9b84c94a39dcfdcd
@@ -1290,7 +1290,9 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc) {
1290
1290
  int n = upb_EnumDef_ValueCount(e);
1291
1291
  for (int i = 0; i < n; i++) {
1292
1292
  const upb_EnumValueDef* ev = upb_EnumDef_Value(e, i);
1293
- char* name = strdup(upb_EnumValueDef_Name(ev));
1293
+ upb_Arena* arena = upb_Arena_New();
1294
+ const char* src_name = upb_EnumValueDef_Name(ev);
1295
+ char* name = upb_strdup2(src_name, strlen(src_name), arena);
1294
1296
  int32_t value = upb_EnumValueDef_Number(ev);
1295
1297
  if (name[0] < 'A' || name[0] > 'Z') {
1296
1298
  if (name[0] >= 'a' && name[0] <= 'z') {
@@ -1303,7 +1305,7 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc) {
1303
1305
  }
1304
1306
  }
1305
1307
  rb_define_const(mod, name, INT2NUM(value));
1306
- free(name);
1308
+ upb_Arena_Free(arena);
1307
1309
  }
1308
1310
 
1309
1311
  rb_define_singleton_method(mod, "lookup", enum_lookup, 1);
Binary file
Binary file
Binary file
Binary file
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.21.8
4
+ version: 3.21.9
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-18 00:00:00.000000000 Z
11
+ date: 2022-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -112,7 +112,7 @@ homepage: https://developers.google.com/protocol-buffers
112
112
  licenses:
113
113
  - BSD-3-Clause
114
114
  metadata:
115
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.8/ruby
115
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.9/ruby
116
116
  post_install_message:
117
117
  rdoc_options: []
118
118
  require_paths: