Package: tdbcmysql / 1.0.0-2

Metadata

Package Version Patches format
tdbcmysql 1.0.0-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
tdbc_mysql.n.patch | (download)

doc/tdbc_mysql.n | 12 6 + 6 - 0 !
1 file changed, 6 insertions(+), 6 deletions(-)

 list macro .ip confused by missing argument delimiters
tdbcmysql.patch | (download)

generic/tdbcmysql.c | 27 20 + 7 - 0 !
1 file changed, 20 insertions(+), 7 deletions(-)

 potentially unsafe pointer to int assignments
 pointer values are repeatedly assigned to int variables causing
 a potential loss of information and making GCC complain about it.
 We coped with the problem using intptr_t which is guaranteed to be
 the same size of a pointer (defined in <stdint.h>). 
 We check for HAVE_STDINT_H to define a TDBC_INTPTR_T data type
 and in case the test fails we revert to the original int definition