]> granicus.if.org Git - postgresql/commit
Small patch which fixes the ODBC driver so it doesn't segfault if:
authorBruce Momjian <bruce@momjian.us>
Mon, 29 Nov 1999 23:42:03 +0000 (23:42 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 29 Nov 1999 23:42:03 +0000 (23:42 +0000)
commit63d7df4003beddf12a88938a9c34f7680103d683
tree57dc59e7cef9a175d88bea977bd02ad0f512b1af
parent1c5aec60bb72ec932d68c71d91147e5516796196
Small patch which fixes the ODBC driver so it doesn't segfault if:
You have CommLog and Debug enabled
You encounter in error in any operation (SQLConnect/SQLExec).
Previously, the extra logging didn't check for NULL pointers
when trying to print some of the strings- the socket error
message could frequently be NULL by design (if there was no socket
error)
and Solaris does not handle NULLS passed to things like printf
("%s\n",string);
gracefully.
This basically duplicates the functionality found in Linux where passing
a null pointer
to printf prints "(NULL)". No very elegant, but the logging is for debug
only anyway.

Dirk Niggemann
src/interfaces/odbc/connection.c
src/interfaces/odbc/statement.c