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


in reply to Re^2: Can't install Text::Metaphone with Strawberry Perl
in thread Can't install Text::Metaphone with Strawberry Perl

This also seems to work. Would anyone care to explain this to me (just for my curiosity, i'm not that experienced with XS).
  • Comment on Re^3: Can't install Text::Metaphone with Strawberry Perl

Replies are listed 'Best First'.
Re^4: Can't install Text::Metaphone with Strawberry Perl
by chromatic (Archbishop) on Oct 15, 2008 at 22:41 UTC

    The metaphone() function returns a C string allocated with the Perl API call NewMemory(), not the system's malloc(). You need to be consistent with the allocation/deallocation functions you use. That's all.