Show
Ignore:
Timestamp:
05/13/08 20:11:56 (6 months ago)
Author:
mwhitworth
Message:

Panic if console memory cannot be allocated.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/video/console.c

    r466 r493  
    606606        if (!scrBuf) 
    607607        { 
    608                 printf("ConsoleInit: Failed to allocate memory for multiple consoles\n"); 
    609                 return -ENOMEM; 
     608                KernelPanic("Failed to allocate memory for multiple consoles"); 
     609                return -ENOMEM; /* Never reached. */ 
    610610        } 
    611611