| 1392 | } |
| 1393 | |
| 1394 | static void nullCheck(const FB_API_HANDLE* ptr, ISC_STATUS code) |
| 1395 | { |
| 1396 | // This function is called for incoming API handles, proposed to be created by the call. |
| 1397 | if (!ptr || *ptr) |
| 1398 | badHandle(code); |
| 1399 | } |
| 1400 | |
| 1401 | static void badSqldaVersion(const short version) |
| 1402 | { |
no test coverage detected