Re: [PATCH] git-credential-netrc: fix uninitialized warning
From: Ted Zlatanov <hidden>
Date: 2016-06-15 22:58:57
On Tue, 8 Oct 2013 13:02:35 -0700 Jonathan Nieder [off-list ref] wrote: JN> Ted Zlatanov wrote:
quoted
On Tue, 8 Oct 2013 12:41:47 -0700 Jonathan Nieder [off-list ref] wrote:
JN> Ted Zlatanov wrote:
quoted
quoted
quoted
Simple patch to avoid unitialized warning and log what we'll do.
JN> Sign-off?
quoted
I didn't realize it was a requirement, must I?
JN> See Documentation/SubmittingPatches, section '(5) Sign your work'
JN> for what this means.
JN> If you just forgot to sign off, that's fine and I can forge it or go
JN> without. If you are unable to sign off because you don't have the
JN> right to submit the change under an open source license, I'd be a bit
JN> worried going forward.
Right, I got it. Sorry, I didn't know that applied to trivial patches.
JN> After this patch, the code looks like
JN> if (!defined $entry->{$check}) {
JN> log_debug(...);
JN> } elsif (defined $query->{$check}) {
JN> ...
JN> } else {
JN> log_debug(...);
JN> }
JN> As a small nit, wouldn't it be more readable with the two !defined()
JN> cases together?
JN> if (!defined $entry->{$check}) {
JN> ...
JN> } elsif (!defined $query->{$check}) {
JN> ...
JN> } else {
JN> ...
JN> }
Because of way the "next ENTRY" line comes out, I like my way slightly
better, but honestly it's fine either way :) If you like, go ahead and
commit the rewrite the way it works for you, I have no objections at all.
Ted