show/hide this revision's text 2 added 1497 characters in body
  #define OOM 42 /* just some number */  /* ... */

You pick.

Update

Good question about graceful return. The difficulty with assuring a graceful return is that in general you really can't set up a paradigm or pattern of how you do that, especially in C, which is after all a fancy assembly language. In a garbage-collected environment, you could force a GC; in a language with exceptions, you can throw an exception and unwind things. In C you have to do it yourself and so you have to decide how much effort you want to put into it.

In most programs, abnormally terminating is about the best you can do. In this scheme you (hopefully) get a useful message on stderr -- of course it could also be to a logger or something like that -- and a known value as the return code.

HIgh reliability programs with short recovery times push you into something like recovery blocks, where you write code that attempts to get a system back into a survivable state. These are great, but complicated; the paper I linked to talks about them in detail.

In the middle, you can come up with a more complicated memory management scheme, say managing your own pool of dynamic memory -- after all, if someone else can write malloc, so can you.

But there's just no general pattern (of which I'm aware anyway) for cleaning up enough to be able to return reliably and let the surrounding program continue.

show/hide this revision's text 1

Look at the other side of the question: if you malloc memory, it fails, and you don't detect it at the malloc, when will you detect it?

Obviously, when you attempt to dereference the pointer.

How will you detect it? By getting a Bus error or something similar, somewhere after the malloc that you'll have to track down with a core dump and the debugger.

On the other hand, you can write

  if((ptr=malloc(size))==NULL){
      /* a well-behaved fprintf should NOT malloc, so it can be used
       * in this sort of context
       */
      fprintf(stderr,"OOM at %s: %s\n", __FILE__, __LINE__);
      exit(OOM);
   }

and get "OOM at parser.c:447".

You pick.