stringio 3.0.1.1 → 3.0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/stringio/stringio.c +4 -3
- 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: 5fd11c3537d4a5e971cd74083d1e88ae5e605f6fc3c07ca90311e93693817cb0
|
4
|
+
data.tar.gz: 32e5d160f233d71d680fab4141ff10e868523ba2dc25556ea5fc242d4d2098de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f6ef3e51b7871a212dee8fb12be59496fffd6bcf75cb42232798cd5f405647b2a6498b8138cea7fb390110e2d9813021981648557c8ec74850e85ac8094e910
|
7
|
+
data.tar.gz: 4d0cc8ee35fd2cb1ac0afb0d516a4af004211fd1aa25a919633ba2671dc5a35e48b0fce3bed2a976a413b6a67a90236e0566cb2a1d72a7e76f13c545fa9d6084
|
data/ext/stringio/stringio.c
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
**********************************************************************/
|
14
14
|
|
15
|
-
#define STRINGIO_VERSION "3.0.1.
|
15
|
+
#define STRINGIO_VERSION "3.0.1.2"
|
16
16
|
|
17
17
|
#include "ruby.h"
|
18
18
|
#include "ruby/io.h"
|
@@ -1233,8 +1233,9 @@ strio_getline(struct getline_arg *arg, struct StringIO *ptr)
|
|
1233
1233
|
str = strio_substr(ptr, ptr->pos, e - s - w, enc);
|
1234
1234
|
}
|
1235
1235
|
else {
|
1236
|
-
if (n < e - s) {
|
1237
|
-
|
1236
|
+
if (n < e - s + arg->chomp) {
|
1237
|
+
/* unless chomping, RS at the end does not matter */
|
1238
|
+
if (e - s < 1024 || n == e - s) {
|
1238
1239
|
for (p = s; p + n <= e; ++p) {
|
1239
1240
|
if (MEMCMP(p, RSTRING_PTR(str), char, n) == 0) {
|
1240
1241
|
e = p + (arg->chomp ? 0 : n);
|