diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-06 01:36:15 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-06 01:36:15 +0200 |
commit | bc108f63dad7a5f6d95418cb78a587f5f570eae6 (patch) | |
tree | a069e8055ac994db78c9a551afcb41b2e1a50676 | |
parent | gitweb: Make the Git logo link target to point to the homepage (diff) | |
download | git-bc108f63dad7a5f6d95418cb78a587f5f570eae6.tar.xz git-bc108f63dad7a5f6d95418cb78a587f5f570eae6.zip |
git-send-email: avoid uninitialized variable warning.
The code took length of $reply_to when it was not even defined,
causing -w to warn.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-send-email.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 4a20310841..3f50abaeb6 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -538,7 +538,7 @@ foreach my $t (@files) { send_message(); # set up for the next message - if ($chain_reply_to || length($reply_to) == 0) { + if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) { $reply_to = $message_id; if (length $references > 0) { $references .= " $message_id"; |