diff options
author | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1990-03-27 04:26:14 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1990-03-27 04:26:14 +0000 |
commit | b1248f16cd8cccfb12ae16cd8e7e93dd53dc52bf (patch) | |
tree | 1fdfdda5e27fc0097610165787c59a4238b5fcf1 /hash.c | |
parent | 21d892ea46b4eaa5d8ae1c8cd325d9940deef5b3 (diff) | |
download | perl-b1248f16cd8cccfb12ae16cd8e7e93dd53dc52bf.tar.gz |
perl 3.0 patch #17 patch #16, continued
See patch #16.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Header: hash.c,v 3.0.1.2 89/12/21 20:03:39 lwall Locked $ +/* $Header: hash.c,v 3.0.1.3 90/03/27 15:59:09 lwall Locked $ * * Copyright (c) 1989, Larry Wall * @@ -6,6 +6,9 @@ * as specified in the README file that comes with the perl 3.0 kit. * * $Log: hash.c,v $ + * Revision 3.0.1.3 90/03/27 15:59:09 lwall + * patch16: @dbmvalues{'foo','bar'} could use the same cache entry for both values + * * Revision 3.0.1.2 89/12/21 20:03:39 lwall * patch7: errno may now be a macro with an lvalue * @@ -161,12 +164,14 @@ register int hash; } #ifdef SOME_DBM else if (tb->tbl_dbm) { /* is this just a cache for dbm file? */ + void hentdelayfree(); + entry = tb->tbl_array[hash & tb->tbl_max]; oentry = &entry->hent_next; entry = *oentry; while (entry) { /* trim chain down to 1 entry */ *oentry = entry->hent_next; - hentfree(entry); /* no doubt they'll want this next. */ + hentdelayfree(entry); /* no doubt they'll want this next. */ entry = *oentry; } } @@ -317,6 +322,17 @@ register HENT *hent; } void +hentdelayfree(hent) +register HENT *hent; +{ + if (!hent) + return; + str_2static(hent->hent_val); /* free between statements */ + Safefree(hent->hent_key); + Safefree(hent); +} + +void hclear(tb) register HASH *tb; { |