in reply to Re: Perl XS - is this code required in DBD::Pg? (cruft)
in thread Perl XS - is this code required in DBD::Pg?
SvSETMAGIC( ST(2) ); /* Is this correct? */
should be
SvSETMAGIC( bufsv );
The idea is to call tied($buf)->STORE() or similar if applicable.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl XS - is this code required in DBD::Pg? (cruft)
by tye (Sage) on Jul 21, 2010 at 19:01 UTC | |
|
Re^3: Perl XS - is this code required in DBD::Pg? (cruft)
by mje (Curate) on Jul 21, 2010 at 19:06 UTC |