diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-22 23:39:22 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-22 23:39:22 -0400 |
commit | 49af3bfc627331f33efed10804db63687a1ddd7a (patch) | |
tree | 56267cbc61285bb60b03f0a6cab99902507283dc /mld/segtab.c | |
parent | make mld file executable (diff) | |
download | mips-49af3bfc627331f33efed10804db63687a1ddd7a.tar.gz mips-49af3bfc627331f33efed10804db63687a1ddd7a.tar.bz2 mips-49af3bfc627331f33efed10804db63687a1ddd7a.zip |
multitude of mld fixes, add entrypoint
Diffstat (limited to '')
-rw-r--r-- | mld/segtab.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mld/segtab.c b/mld/segtab.c index d62b9a8..7456eba 100644 --- a/mld/segtab.c +++ b/mld/segtab.c @@ -136,6 +136,8 @@ int segtab_ent_push(struct segment_table_entry *ent, struct segment *seg) } ent->parts[ent->len++] = seg; + seg->ent = ent; + return M_SUCCESS; } |