|
|
sybperl-l Archive
Up Prev Next
From: Michael Peppler <mpeppler at peppler dot org>
Subject: RE: Problem with sybperl
Date: Jun 19 2002 8:25PM
On Wed, 2002-06-19 at 13:08, Sabherwal, Balvinder (MBS) wrote:
> Here is the new stacktrace. The perl version is Activestate perl 5.6.1.
> (gdb) bt
> #0 0xef5a4734 in strlen ()
> #1 0xef49a49c in newdbh (info=0x289830, package=0x1254b8 "Sybase::CTlib",
> attr_ref=0xf521c) at CTlib.xs:480
This doesn't make any sense!
if(info->connection->refcount == 1) {
if((Att = perl_get_hv("Sybase::CTlib::Att", FALSE)))
{
if((svp = hv_fetch(Att, hash_keys[HV_use_datetime].key,
strlen(hash_keys[HV_use_datetime].key), 0)))
info->connection->attr.UseDateTime = SvTRUE(*svp);
It dies on the strlen() above.
But HV_use_datetime is an enum, so its value should be defined
correctly.
Try this:
On line 188, change
HV_use_datetime,
to
HV_use_datetime = 0,
and then rebuild.
I don't see why that would make any difference, though.
Michael
--
Michael Peppler / mpeppler@peppler.org / http://www.mbay.net/~mpeppler
mpeppler@zetatools.com / ZetaTools, Inc / http://www.zetatools.com
ZetaTools: Call perl functions as Sybase stored procedures!
|