mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 13:39:59 -04:00
[v9_9] type mismatch in ODBC DLZ driver
3732. [contrib] Fixed a type mismatch causing the ODBC DLZ
driver to dump core on 64-bit systems. [RT #35324]
(cherry picked from commit 41e55d0403)
This commit is contained in:
parent
e9a2673e85
commit
55c7ef52aa
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3732. [contrib] Fixed a type mismatch causing the ODBC DLZ
|
||||
driver to dump core on 64-bit systems. [RT #35324]
|
||||
|
||||
3731. [func] Added a "no-case-compress" ACL, which causes
|
||||
named to use case-insensitive compression
|
||||
(disabling change #3645) for specified
|
||||
|
|
|
|||
|
|
@ -734,7 +734,7 @@ odbc_get_resultset(const char *zone, const char *record,
|
|||
static isc_result_t
|
||||
odbc_getField(SQLHSTMT *stmnt, SQLSMALLINT field, char **data) {
|
||||
|
||||
SQLINTEGER size;
|
||||
SQLLEN size;
|
||||
|
||||
REQUIRE(data != NULL && *data == NULL);
|
||||
|
||||
|
|
@ -763,7 +763,7 @@ odbc_getManyFields(SQLHSTMT *stmnt, SQLSMALLINT startField,
|
|||
SQLSMALLINT endField, char **retData) {
|
||||
|
||||
isc_result_t result;
|
||||
SQLINTEGER size;
|
||||
SQLLEN size;
|
||||
int totSize = 0;
|
||||
SQLSMALLINT i;
|
||||
int j = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue