K 10
svn:author
V 6
iulius
K 8
svn:date
V 27
2015-08-10T11:51:03.413889Z
K 7
svn:log
V 381
Perl XS code:  Clean up the use of ERRSV along with the SvTRUE macro

ERRSV macro has a getter C function internally.  SvTRUE macro evaluates
its arguments multiple times, leading to exponential calls of the
getter function.  ERRSV should be assigned to a SV* variable before
passing that SV* to SvTRUE macro.

Thanks to bulk88 for having pointed that out in the Perl bug tracker.

END
