Subject: | Bleadperl v5.17.6-328-g463ea22 breaks IDEA.xs |
As per subject. Here is the commit:
http://perl5.git.perl.org/perl.git/commit/463ea2290a54ee65470ca4dd46dea0d41cfbc9dd
Tested patch:
--- IDEA.xs~ 2003-01-19 03:48:04.000000000 +0100
+++ IDEA.xs 2012-12-16 07:16:22.000912303 +0100
@@ -71,8 +71,7 @@
output = sv_newmortal();
output_len = 8;
- if (!SvUPGRADE(output, SVt_PV))
- croak("cannot use output argument as lvalue");
+ SvUPGRADE(output, SVt_PV);
idea_crypt((u_int16_t *)input, (u_int16_t
*)SvGROW(output, output_len), (u_int16_t *)ks);