Use abort() instead of exit() to abort library functions In some hopeless situations, certain library functions in libpq and libpgport quit the program. Use abort() for that instead of exit(), so we don't interfere with the normal exit codes the program might use, we clearly signal the abnormal termination, and the caller has a chance of catching the termination.
This was originally pointed out by Debian's Lintian program. Branch ------ master Details ------- http://git.postgresql.org/pg/commitdiff/c6ea8ccea6bf23501962ddc7ac9ffdb99c8643e1 Modified Files -------------- src/interfaces/libpq/fe-print.c | 16 ++++++++-------- src/interfaces/libpq/libpq-int.h | 2 +- src/port/path.c | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
