You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Small patch which fixes the ODBC driver so it doesn't segfault if:
You have CommLog and Debug enabledYou encounter in error in any operation (SQLConnect/SQLExec).Previously, the extra logging didn't check for NULL pointerswhen trying to print some of the strings- the socket errormessage could frequently be NULL by design (if there was no socketerror)and Solaris does not handle NULLS passed to things like printf("%s\n",string);gracefully.This basically duplicates the functionality found in Linux where passinga null pointerto printf prints "(NULL)". No very elegant, but the logging is for debugonly anyway.Dirk Niggemann