diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-14 04:45:27 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-14 04:45:27 +0000 |
commit | 1060174a2451d4b94cb2cc59ba74900cf08f43a6 (patch) | |
tree | 77ac8b1f992517e762e42e8577da1c2c75b3f2e9 /wk5/pset | |
parent | c0d573bc7519ddf43c301658c084bbb83a812b27 (diff) |
Sat, Apr 13, 2024, 9:45 PM -07:00
Diffstat (limited to 'wk5/pset')
-rw-r--r-- | wk5/pset/inheritance/inheritance.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wk5/pset/inheritance/inheritance.c b/wk5/pset/inheritance/inheritance.c index 172af27..912a461 100644 --- a/wk5/pset/inheritance/inheritance.c +++ b/wk5/pset/inheritance/inheritance.c @@ -80,6 +80,7 @@ person *create_family(int generations) void free_family(person *p) { // TODO: Handle base case + free(p) // TODO: Free parents recursively |