git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-svn: Don't rely on $_ after making a function call
@ 2007-04-25 18:50 Adam Roben
  2007-04-25 20:59 ` Eric Wong
  0 siblings, 1 reply; 5+ messages in thread
From: Adam Roben @ 2007-04-25 18:50 UTC (permalink / raw)
  To: Eric Wong; +Cc: git, Adam Roben

Many functions and operators in perl set $_, so its value cannot be relied upon
after calling arbitrary functions. The solution is simply to copy the value of
$_ into a local variable that will not get overwritten.

Signed-off-by: Adam Roben <aroben@apple.com>
---
 git-svn.perl |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/git-svn.perl b/git-svn.perl
index 077d6b3..90f3bc1 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -771,19 +771,19 @@ sub cmt_metadata {
 sub working_head_info {
 	my ($head, $refs) = @_;
 	my ($fh, $ctx) = command_output_pipe('rev-list', $head);
-	while (<$fh>) {
-		chomp;
-		my ($url, $rev, $uuid) = cmt_metadata($_);
+	while (my $hash = <$fh>) {
+		chomp($hash);
+		my ($url, $rev, $uuid) = cmt_metadata($hash);
 		if (defined $url && defined $rev) {
 			if (my $gs = Git::SVN->find_by_url($url)) {
 				my $c = $gs->rev_db_get($rev);
-				if ($c && $c eq $_) {
+				if ($c && $c eq $hash) {
 					close $fh; # break the pipe
 					return ($url, $rev, $uuid, $gs);
 				}
 			}
 		}
-		unshift @$refs, $_ if $refs;
+		unshift @$refs, $hash if $refs;
 	}
 	command_close_pipe($fh, $ctx);
 	(undef, undef, undef, undef);
-- 
1.5.2.rc0.14.g520d-dirty

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] git-svn: Don't rely on $_ after making a function call
  2007-04-25 18:50 [PATCH] git-svn: Don't rely on $_ after making a function call Adam Roben
@ 2007-04-25 20:59 ` Eric Wong
  2007-04-25 21:03   ` Adam Roben
  2007-04-25 21:13   ` Junio C Hamano
  0 siblings, 2 replies; 5+ messages in thread
From: Eric Wong @ 2007-04-25 20:59 UTC (permalink / raw)
  To: Adam Roben; +Cc: git

Adam Roben <aroben@apple.com> wrote:
> Many functions and operators in perl set $_, so its value cannot be relied upon
> after calling arbitrary functions. The solution is simply to copy the value of
> $_ into a local variable that will not get overwritten.

Does this fix any particular bug?  It looks right to me
and makes the code easier to follow, so;

Acked-by: Eric Wong <normalperson@yhbt.net>

> Signed-off-by: Adam Roben <aroben@apple.com>
> ---
>  git-svn.perl |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/git-svn.perl b/git-svn.perl
> index 077d6b3..90f3bc1 100755
> --- a/git-svn.perl
> +++ b/git-svn.perl
> @@ -771,19 +771,19 @@ sub cmt_metadata {
>  sub working_head_info {
>  	my ($head, $refs) = @_;
>  	my ($fh, $ctx) = command_output_pipe('rev-list', $head);
> -	while (<$fh>) {
> -		chomp;
> -		my ($url, $rev, $uuid) = cmt_metadata($_);
> +	while (my $hash = <$fh>) {
> +		chomp($hash);
> +		my ($url, $rev, $uuid) = cmt_metadata($hash);
>  		if (defined $url && defined $rev) {
>  			if (my $gs = Git::SVN->find_by_url($url)) {
>  				my $c = $gs->rev_db_get($rev);
> -				if ($c && $c eq $_) {
> +				if ($c && $c eq $hash) {
>  					close $fh; # break the pipe
>  					return ($url, $rev, $uuid, $gs);
>  				}
>  			}
>  		}
> -		unshift @$refs, $_ if $refs;
> +		unshift @$refs, $hash if $refs;
>  	}
>  	command_close_pipe($fh, $ctx);
>  	(undef, undef, undef, undef);
> -- 
> 1.5.2.rc0.14.g520d-dirty
> 

-- 
Eric Wong

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] git-svn: Don't rely on $_ after making a function call
  2007-04-25 20:59 ` Eric Wong
@ 2007-04-25 21:03   ` Adam Roben
  2007-04-25 21:13   ` Junio C Hamano
  1 sibling, 0 replies; 5+ messages in thread
From: Adam Roben @ 2007-04-25 21:03 UTC (permalink / raw)
  To: Eric Wong; +Cc: git

On Apr 25, 2007, at 1:59 PM, Eric Wong wrote:

> Adam Roben <aroben@apple.com> wrote:
>> Many functions and operators in perl set $_, so its value cannot  
>> be relied upon
>> after calling arbitrary functions. The solution is simply to copy  
>> the value of
>> $_ into a local variable that will not get overwritten.
>
> Does this fix any particular bug?  It looks right to me
> and makes the code easier to follow, so;

    Yes, I was getting warnings that $_ was uninitialized in the eq.  
Sorry for not mentioning that.

-Adam

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] git-svn: Don't rely on $_ after making a function call
  2007-04-25 20:59 ` Eric Wong
  2007-04-25 21:03   ` Adam Roben
@ 2007-04-25 21:13   ` Junio C Hamano
  2007-04-26  2:11     ` Randal L. Schwartz
  1 sibling, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2007-04-25 21:13 UTC (permalink / raw)
  To: Eric Wong; +Cc: Adam Roben, git

Eric Wong <normalperson@yhbt.net> writes:

> Adam Roben <aroben@apple.com> wrote:
>> Many functions and operators in perl set $_, so its value cannot be relied upon
>> after calling arbitrary functions. The solution is simply to copy the value of
>> $_ into a local variable that will not get overwritten.
>
> Does this fix any particular bug?  It looks right to me
> and makes the code easier to follow, so;

I suspect Merlyn has better explanation, but...

     for (list) {
	...	
     }

loop implicitly localizes $_ and does not share this problem,
which I really appreciate whenever I am writing Perl code, but
often enough I was bitten by scripts that use "while (<$fh>)",
which does not localizes $_, and made hard to spot bugs by
clobbering $_.

I find the patch a good safety measure for any future breakages.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] git-svn: Don't rely on $_ after making a function call
  2007-04-25 21:13   ` Junio C Hamano
@ 2007-04-26  2:11     ` Randal L. Schwartz
  0 siblings, 0 replies; 5+ messages in thread
From: Randal L. Schwartz @ 2007-04-26  2:11 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Eric Wong, Adam Roben, git

>>>>> "Junio" == Junio C Hamano <junkio@cox.net> writes:

Junio> I suspect Merlyn has better explanation, but...

Junio>      for (list) {
Junio> 	...	
Junio>      }

Junio> loop implicitly localizes $_ and does not share this problem,
Junio> which I really appreciate whenever I am writing Perl code, but
Junio> often enough I was bitten by scripts that use "while (<$fh>)",
Junio> which does not localizes $_, and made hard to spot bugs by
Junio> clobbering $_.

Junio> I find the patch a good safety measure for any future breakages.

I'm happy with the patch.

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-04-26  2:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-25 18:50 [PATCH] git-svn: Don't rely on $_ after making a function call Adam Roben
2007-04-25 20:59 ` Eric Wong
2007-04-25 21:03   ` Adam Roben
2007-04-25 21:13   ` Junio C Hamano
2007-04-26  2:11     ` Randal L. Schwartz

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).