From: Richard Jones Date: Thu, 25 Mar 2010 19:39:07 +0000 (+0000) Subject: perl: Fix $h->value_value method when returning an empty value. X-Git-Tag: 1.2.1~12 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;ds=sidebyside;h=8993116eec9b213a86a1b4d1defa94830a106818;hp=8993116eec9b213a86a1b4d1defa94830a106818;p=hivex.git perl: Fix $h->value_value method when returning an empty value. Previously this didn't correctly return an empty registry value. In this case the length argument to newSVpv would be 0 which tells Perl to try to calculate the length (we want newSVpvn instead). ---