Path: utzoo!mnetor!uunet!nuchat!sugar!peter From: peter@sugar.UUCP (Peter da Silva) Newsgroups: comp.sys.amiga Subject: Bug in Instant Application. Message-ID: <1332@sugar.UUCP> Date: 1 Jan 88 03:06:19 GMT Organization: Sugar Land UNIX - Houston, TX Lines: 18 Keywords: menu allocremember bug instant.c There is a bug in my Instant Application tool builder. In the file "menu.c" I call AllocRemember twice with bad parameters. Instead of passing a pointer to a pointer to a remember structure, I pass a pointer to a remember structure. menu = (struct Menu *)AllocRemember( | menuptr->MenuMemory, sizeof(struct Menu), MEMF_PUBLIC); Look for lines like the ones above. Change them to read: menu = (struct Menu *)AllocRemember( | &menuptr->MenuMemory, sizeof(struct Menu), MEMF_PUBLIC); -- -- Peter da Silva `-_-' ...!hoptoad!academ!uhnix1!sugar!peter -- Disclaimer: These U aren't mere opinions... these are *values*.