summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index 90774177e6..c221773df9 100644
--- a/gc.c
+++ b/gc.c
@@ -619,9 +619,11 @@ mark_locations_array(x, n)
register VALUE *x;
register long n;
{
+ VALUE v;
while (n--) {
- if (is_pointer_to_heap((void *)*x)) {
- gc_mark(*x, 0);
+ v = *x;
+ if (is_pointer_to_heap((void *)v)) {
+ gc_mark(v, 0);
}
x++;
}