Merge "Replaced one exit() call after OOM with abort()"
diff --git a/sources/cxx-stl/stlport/stlport/stl/_new.h b/sources/cxx-stl/stlport/stlport/stl/_new.h
index 94094cf..ffa25f4 100644
--- a/sources/cxx-stl/stlport/stlport/stl/_new.h
+++ b/sources/cxx-stl/stlport/stlport/stl/_new.h
@@ -113,7 +113,7 @@
 #    ifndef _STLP_INTERNAL_CSTDIO
 #      include <stl/_cstdio.h>
 #    endif
-#    define _STLP_THROW_BAD_ALLOC puts("out of memory\n"); exit(1)
+#    define _STLP_THROW_BAD_ALLOC puts("out of memory\n"); abort()
 #  else
 #    define _STLP_THROW_BAD_ALLOC _STLP_THROW(_STLP_STD::bad_alloc())
 #  endif