summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-12-01 06:22:10 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-12-01 06:22:10 -0800
commit4e92c2d19382340d8e6c8fe71013d02bbc6065f4 (patch)
treee146a1e44d81a8b1b4bb3ea070d72a16c7527680 /struct.c
parent121a9209a20d5789f693c77e4fbe74522506f74d (diff)
downloadtxr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.tar.gz
txr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.tar.bz2
txr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.zip
Bugfix: structs not inheriting late static slot values.
This bug doesn't affect static slots that are defined in defstruct, because those get initialized in the new type by the static init function. The bug is that the values of static slots added later with static_slot_ensure are not inherited by subtypes that are created later still. (Since static_slot_ensure propagates a slot to subtypes which already exist, those types get the slot value.) * struct.c (make_struct_type): Copy the contents of the static slot array of the supertype into the new type, so that static slot values are inherited. We can just use memcpy because the ordering of static slots is the same in the new type, and the inherited ones precede the new ones, due to the way the all_slots list is combined. * txr.1: Clarify inheritance of static slots.
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index bbe8584f..9ac312aa 100644
--- a/struct.c
+++ b/struct.c
@@ -276,8 +276,10 @@ val make_struct_type(val name, val super,
sethash(struct_type_hash, name, stype);
- if (super)
+ if (super) {
mpush(stype, mkloc(su->dvtypes, super));
+ memcpy(st->stslot, su->stslot, sizeof (val) * su->nstslots);
+ }
call_stinitfun_chain(st, stype);