mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/stringio/stringio.c (strio_read): "binray" is always zero here
Remove unused conditional expression to suppress Coverity Scan warnings.
This commit is contained in:
parent
e6f188ea03
commit
deb5e58230
1 changed files with 1 additions and 1 deletions
|
@ -1409,7 +1409,7 @@ strio_read(int argc, VALUE *argv, VALUE self)
|
|||
case 0:
|
||||
len = RSTRING_LEN(ptr->string);
|
||||
if (len <= ptr->pos) {
|
||||
rb_encoding *enc = binary ? rb_ascii8bit_encoding() : get_enc(ptr);
|
||||
rb_encoding *enc = get_enc(ptr);
|
||||
if (NIL_P(str)) {
|
||||
str = rb_str_new(0, 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue