supplement 2.23 → 2.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README +1 -1
- data/lib/supplement.c +10 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 196a040bf5dba1ea9778b2a9c2335698e6d43214832a3106bb6efbb616d718ac
|
4
|
+
data.tar.gz: 41af129cdd0a520ee715b9663395c63e39754a8be3a494bb62d8e7a4d30cf8c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbf458038e5b477e340faf16ecbfa98058be9d2b3014253ce448666af627573c6b51eb9d4949fb0cf04af48b7bc42c15b304d39fa4ce3c2ceb0c0ac727a952b1
|
7
|
+
data.tar.gz: decd0d8dfa69fae98b8f03c4e19b06f9f28bf341d24bf38b83837ff8f955ec81a0b01904bd0c7bdee4077d7ec27c6c0f168997f861251f2c1aba0aca794aba50
|
data/README
CHANGED
data/lib/supplement.c
CHANGED
@@ -831,8 +831,11 @@ rb_ary_notempty_p( VALUE ary)
|
|
831
831
|
VALUE
|
832
832
|
rb_ary_first_set( VALUE ary, VALUE val)
|
833
833
|
{
|
834
|
-
rb_ary_modify(ary);
|
835
|
-
|
834
|
+
rb_ary_modify( ary);
|
835
|
+
long len = RARRAY_LEN( ary);
|
836
|
+
if (len == 0)
|
837
|
+
rb_raise( rb_eArgError, "cannot replace first element of an empty array");
|
838
|
+
RARRAY_ASET( ary, 0, val);
|
836
839
|
return val;
|
837
840
|
}
|
838
841
|
|
@@ -853,8 +856,11 @@ rb_ary_first_set( VALUE ary, VALUE val)
|
|
853
856
|
VALUE
|
854
857
|
rb_ary_last_set( VALUE ary, VALUE val)
|
855
858
|
{
|
856
|
-
rb_ary_modify(ary);
|
857
|
-
|
859
|
+
rb_ary_modify( ary);
|
860
|
+
long len = RARRAY_LEN( ary);
|
861
|
+
if (len == 0)
|
862
|
+
rb_raise( rb_eArgError, "cannot replace last element of an empty array");
|
863
|
+
RARRAY_ASET( ary, len - 1, val);
|
858
864
|
return val;
|
859
865
|
}
|
860
866
|
|