2008-10-22 16:00 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* contrib/rddsql/hbsqldd.h
* fixed BYTE * val -> BYTE val[1]
Hi,
Viktor, my code:
typedef struct _MIXKEY
{
ULONG rec;
BYTE notnul;
BYTE val[];
} MIXKEY, *PMIXKEY;
was intensional. Changing to
BYTE * val;
is wrong. It's not a pointer to string. It's a string itself, but size
of val is unknown (depends on key length of index tag). I've changed
this line to
BYTE val[ 1 ];
this is not harmfull, but makes allocation of 1 extra byte. Does MSVC
gives error on
BYTE val[];
?
Does anyone know how to change it to be MSVC compatible?
Inside mysql's .h files MYSQL_ROW_OFFSET is defined as a pointer, but
I've left this code:
#if sizeof( MYSQL_ROW_OFFSET ) != sizeof( void* )
#error "MySQLDD error: sizeof( MYSQL_ROW_OFFSET ) != sizeof( void* )"
#endif
just for testing purpose in case definition of MYSQL_ROW_OFFSET will be
changed in future (or other platforms). I guess we can comment it at
all, or just delete your hack comment. Does anyone know how to make this
code portable?
Best regards,
Mindaugas
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour