[PATCH] Git.pm: let a "false" Directory parameter (such as "0") be used correctly by the constructor"

Subsystems: the rest

STALE3737d

3 messages, 2 authors, 2016-06-15 · open the first message on its own page

[PATCH] Git.pm: let a "false" Directory parameter (such as "0") be used correctly by the constructor"

From: Philippe Bruhat (BooK) <hidden>
Date: 2016-06-15 22:45:50

---
 perl/Git.pm |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/perl/Git.pm b/perl/Git.pm
index 8392a68..ad0f530 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -166,11 +166,12 @@ sub repository {
 		}
 	}
 
-	if (not defined $opts{Repository} and not defined $opts{WorkingCopy}) {
-		$opts{Directory} ||= '.';
+	if (not defined $opts{Repository} and not defined $opts{WorkingCopy}
+		and not defined $opts{Directory}) {
+		$opts{Directory} = '.';
 	}
 
-	if ($opts{Directory}) {
+	if (defined $opts{Directory}) {
 		-d $opts{Directory} or throw Error::Simple("Directory not found: $!");
 
 		my $search = Git->repository(WorkingCopy => $opts{Directory});
-- 
1.6.0.3.517.g759a

Re: [PATCH] Git.pm: let a "false" Directory parameter (such as "0") be used correctly by the constructor"

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:45:51

"Philippe Bruhat (BooK)" [off-list ref] writes:
---
 perl/Git.pm |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
Lacks sign-off and description but otherwise looks good.  Will queue to
'pu' to leave you a chance to re-send.

    commit b29b1ae7442cd7c1c78e38b7d980905944ec31e0
    Author: Philippe Bruhat (BooK) [off-list ref]
    Date:   Mon Dec 29 01:25:00 2008 +0100

        Git.pm: correctly handle directory name that evaluates to "false"

        The repository constructor mistakenly rewrote a Directory parameter that
        Perl happens to evaluate to false (e.g. "0") to ".".


Thanks.

Re: [PATCH] Git.pm: let a "false" Directory parameter (such as "0") be used correctly by the constructor"

From: Philippe Bruhat (BooK) <hidden>
Date: 2016-06-15 22:45:51

On Thu, Jan 01, 2009 at 01:00:18PM -0800, Junio C Hamano wrote:
"Philippe Bruhat (BooK)" [off-list ref] writes:
quoted
---
 perl/Git.pm |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
Lacks sign-off and description but otherwise looks good.  Will queue to
'pu' to leave you a chance to re-send.
Yeah, I noticed the lack of Sign-off right after sending. I'll re-send.

-- 
 Philippe Bruhat (BooK)

 A reputation is only as good as the truth beneath it, if any.
                                    (Moral from Groo The Wanderer #91 (Epic))
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help