fix crash when using rmpage when no pages exist

This commit is contained in:
Sander van Dijk 2006-01-24 00:01:17 +01:00
parent abcefd3981
commit 453c0cf95f

View File

@ -68,6 +68,9 @@ alloc_page()
void
destroy_page(Page * p)
{
if(!p)
return;
Page *newselpage;
AttachQueue *o, *n;