Date: Thu, 29 Jul 93 11:42:42 +0200 From: terra AT diku DOT dk To: NEEK AT cerecam DOT uct DOT ac DOT za Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Exception 14 error > I have an image processing program that is crashing at a specific > point with the error message : > " Segmentation violation in pointer 0x00000000 > at 40:465c > Exception 14 (0xe) at eip=465c" Sounds like malloc returned a NULL pointer to you. The above message means that a NULL pointer was accessed. Perhaps the piece of GO32 that prints the above should check the address and print the more usefull text "NULL pointer dereferenced (with offset xxx)" Morten Welinder terra AT diku DOT dk