Subject: | Bleadperl v5.17.6-328-g463ea22 breaks Twofish.xs |
As per subject. Here is the commit:
http://perl5.git.perl.org/perl.git/commit/463ea2290a54ee65470ca4dd46dea0d41cfbc9dd
Tested patch:
--- Twofish.xs~ 2001-05-21 19:38:01.000000000 +0200
+++ Twofish.xs 2012-12-16 08:07:17.980425700 +0100
@@ -54,7 +54,8 @@
output = sv_newmortal();
outlen = 16;
- if (SvREADONLY(output) || !SvUPGRADE(output, SVt_PV))
+ SvUPGRADE(output, SVt_PV);
+ if (SvREADONLY(output))
croak("cannot use output as lvalue");
twofish_crypt(self,
HTH,