Miquel van Smoorenburg wrote:
>
> I just tried 1.NOVM.21 on my own workstation, and it installed and ran fine
> (as usual). So I installed it on our main cache, but it refuses to
> start with:
>
> FATAL: Somebody is putting a NULL pointer!
In store.c, in destroy_MemObject():
put_free_8k_page(mem->e_abort_msg);
should probably be:
if (mem->e_abort_msg != NULL)
put_free_8k_page(mem->e_abort_msg);
I thinks this is what was suggested in the list a few weeks ago,
when the "false 8k page leak" was discussed. In any case, my NOVM.20
runs fine for some time with this.
Received on Wed Mar 18 1998 - 07:31:58 MST
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:39:24 MST