2008/10/24 Nicholas Clark <[EMAIL PROTECTED]>: > Indeed, array reference, not array. So here: > >> vector_length = av_len(array) + 1; > > you need > > vector_length = av_len(SvRV(array)) + 1;
Doh! Sometimes you just can't see the wood for the trees. Thanks! Jeff