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

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.