]> git.ipfire.org Git - thirdparty/git.git/commit - git-send-email.perl
git-send-email.perl: ensure $domain is defined before using it
authorBrandon Casey <drafnel@gmail.com>
Mon, 27 Sep 2010 03:18:01 +0000 (22:18 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 27 Sep 2010 18:41:45 +0000 (11:41 -0700)
commit61ef5e9b56e1c16f6d3c142e2c63f6e2c720c64e
tree55dcab0ea94f4630e81841217814f482ef362e01
parentb822423ed20df158a478c9522373bffb04fa5ecc
git-send-email.perl: ensure $domain is defined before using it

valid_fqdn() may attempt to operate on an undefined value if
Net::Domain::domainname fails to determine the domain name.  This causes
perl to emit unpleasant warnings.

So, add a check for whether $domain has been defined before using it.

Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-send-email.perl