1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

remove unused variables.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-12-12 05:15:33 +00:00
parent a357c6a926
commit 0158c70645

View file

@ -84,7 +84,6 @@ rb_digest_base_s_digest(VALUE klass, VALUE str)
{
algo_t *algo;
void *pctx;
unsigned char *digest;
volatile VALUE obj = rb_digest_base_alloc(klass);
algo = get_digest_base_metadata(klass);
@ -104,7 +103,6 @@ rb_digest_base_s_hexdigest(VALUE klass, VALUE str)
{
algo_t *algo;
void *pctx;
unsigned char *hexdigest;
volatile VALUE obj = rb_digest_base_alloc(klass);
algo = get_digest_base_metadata(klass);
@ -170,7 +168,6 @@ rb_digest_base_digest(VALUE self)
{
algo_t *algo;
void *pctx1, *pctx2;
unsigned char *digest;
size_t len;
VALUE str;