I suggest an experiment - write a small program which keeps allocating memory without freeing it and then prints a small (fixed) message when allocation fails. What effects do you notice on your system when you run this program? Does the message ever get printed?
If the system behaves normally and remains responsive up to the point when the error is displayed, then I would say yes, it is worth checking for. OTOH, if the system, becomes slow, unresponsive and eventaually unusable before the message is displayed (if it ever is) then I I would say no, it is not worth checking for.
Important: Before running this test, save all important work. Do not run it on a production server.
Regardfing the Linux OOM behaviur - this is actually desirable and is the way that most OSs work. It's important to realise that when you malloc() some memory you are NOT getting it directly from the OS, you are getting it from the C runtime library. This will typically have asked the OS for a big chunk of memory up front (or at the first request) which it then manages via the malloc/free interface. As many programs never use dynamiic memory at all, it would be undesirable for the OS to hand "real" memory to the C runtime - instead it hands som euncomitted vM which will actually be comitted as you make your malloc calls.
