From c3a66e8a72e7ba6cc25c09d0abacbefcd06f51f7 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 10 Dec 2001 07:24:00 +0000 Subject: auxiliary routines update. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/gdbm/gdbm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext') diff --git a/ext/gdbm/gdbm.c b/ext/gdbm/gdbm.c index fba4d2386..0fa13a5e6 100644 --- a/ext/gdbm/gdbm.c +++ b/ext/gdbm/gdbm.c @@ -167,7 +167,7 @@ rb_gdbm_fetch(dbm, key) RSTRING(str)->ptr = 0; RSTRING(str)->len = val.dsize; - RSTRING(str)->orig = 0; + RSTRING(str)->aux.capa = val.dsize; RSTRING(str)->ptr = REALLOC_N(val.dptr,char,val.dsize+1); RSTRING(str)->ptr[val.dsize] = '\0'; @@ -214,7 +214,7 @@ rb_gdbm_firstkey(dbm) RSTRING(str)->ptr = 0; RSTRING(str)->len = key.dsize; - RSTRING(str)->orig = 0; + RSTRING(str)->aux.capa = key.dsize; RSTRING(str)->ptr = REALLOC_N(key.dptr,char,key.dsize+1); RSTRING(str)->ptr[RSTRING(str)->len] = '\0'; @@ -238,7 +238,7 @@ rb_gdbm_nextkey(dbm, keystr) RSTRING(str)->ptr = 0; RSTRING(str)->len = key2.dsize; - RSTRING(str)->orig = 0; + RSTRING(str)->aux.capa = key2.dsize; RSTRING(str)->ptr = REALLOC_N(key2.dptr,char,key2.dsize+1); RSTRING(str)->ptr[RSTRING(str)->len] = '\0'; -- cgit