http://qs321.pair.com?node_id=123395


in reply to Re: Re: XS routine returns an extra depth of array refs
in thread XS routine returns an extra depth of array refs

It should be newRV_inc. :-)

Only with inline the refcounter of the SV gets auto-incremented. With XS you have to that yourself.

Update: For clarity, only the refcounter of the SV that gets returned! Other SV*'s you have to inc manually!

Replies are listed 'Best First'.
Re: {4} XS routine returns an extra depth of array refs
by mugwumpjism (Hermit) on Nov 06, 2001 at 00:01 UTC
    The whole reason I'm not using Inline is because I want to be able to compile this as a module and not have it try to compile stuff at run time!
      Modules using Inline are compiled only once and this can be done during installation or even before distribution (for win32 for ex.).

      You have to modify your Makefile.PL for that, it's in the docs.