diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-09-30 09:07:13 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-09-30 09:07:13 +0000 |
commit | 1b7e97044dae47cd99d6eeefe754a8f1b10b8c01 (patch) | |
tree | 941b723855f53c2d37f19430d12dffc967788cc2 /ext | |
parent | 1852b4a8660ee8e71997f81cee4903c6eb23f306 (diff) | |
download | ruby-1b7e97044dae47cd99d6eeefe754a8f1b10b8c01.tar.gz |
dbm.c: removed useless assignments
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dbm/dbm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/dbm/dbm.c b/ext/dbm/dbm.c index 734a400681..c3229d65c5 100644 --- a/ext/dbm/dbm.c +++ b/ext/dbm/dbm.c @@ -339,8 +339,6 @@ fdbm_key(VALUE obj, VALUE valstr) ExportStringValue(valstr); len = RSTRING_LEN(valstr); if (TOO_LONG(len)) return Qnil; - val.dptr = RSTRING_PTR(valstr); - val.dsize = (DSIZE_TYPE)len; GetDBM2(obj, dbmp, dbm); for (key = dbm_firstkey(dbm); key.dptr; key = dbm_nextkey(dbm)) { |