git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] t/gitweb-lib: Don't pass constant to decode_utf8
@ 2010-10-14 19:36 Brian Gernhardt
  0 siblings, 0 replies; only message in thread
From: Brian Gernhardt @ 2010-10-14 19:36 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano

Running 'decode_utf8("", Encode::FB_CROAK)' causes perl 5.10 to die on
OS X 10.6.4 with:

Modification of a read-only value attempted at
/Library/Perl/Updates/5.10.0/darwin-thread-multi-2level/Encode.pm line
216.

This is because Encode 2.40 updates the string to decode in-place when
a second argument is passed.  Work around this by passing an empty
variable ($_) instead of a constant string ("")

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
---
 t/gitweb-lib.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/t/gitweb-lib.sh b/t/gitweb-lib.sh
index 8c490c8..c31d815 100644
--- a/t/gitweb-lib.sh
+++ b/t/gitweb-lib.sh
@@ -80,7 +80,7 @@ if ! test_have_prereq PERL; then
 	test_done
 fi
 
-perl -MEncode -e 'decode_utf8("", Encode::FB_CROAK)' >/dev/null 2>&1 || {
+perl -MEncode -e 'decode_utf8($_, Encode::FB_CROAK)' >/dev/null 2>&1 || {
 	skip_all='skipping gitweb tests, perl version is too old'
 	test_done
 }
-- 
1.7.3.1.139.g4284d

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-14 19:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-14 19:36 [PATCH] t/gitweb-lib: Don't pass constant to decode_utf8 Brian Gernhardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).