[svn:parrot] r48726 - trunk/src

nwellnhof at svn.parrot.org nwellnhof at svn.parrot.org
Mon Aug 30 15:21:31 UTC 2010


Author: nwellnhof
Date: Mon Aug 30 15:21:31 2010
New Revision: 48726
URL: https://trac.parrot.org/parrot/changeset/48726

Log:
Fix r48687

Modified:
   trunk/src/hash.c

Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c	Mon Aug 30 15:21:20 2010	(r48725)
+++ trunk/src/hash.c	Mon Aug 30 15:21:31 2010	(r48726)
@@ -1101,7 +1101,8 @@
     UINTVAL i;
 
     parrot_hash_iterate(hash,
-        mem_gc_free(interp, _bucket->key););
+        mem_gc_free(interp, _bucket->key);
+        func(_bucket->value););
 
     parrot_hash_destroy(interp, hash);
 }


More information about the parrot-commits mailing list