From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Network-functions: add check if variables are defined
Date: Tue, 07 Nov 2017 16:20:20 +0000 [thread overview]
Message-ID: <1510071620.4838.313.camel@ipfire.org> (raw)
In-Reply-To: <1510062807-12906-1-git-send-email-alexander.marx@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1770 bytes --]
Hi,
this patch conflicted with the previous one that you sent today. It would have
been better to send them all together in one patchset.
It also had some whitespace errors.
However, I edited this and merged it.
-Michael
On Tue, 2017-11-07 at 14:53 +0100, Alexander Marx wrote:
> in function network_equal and network2bin a check for undefined variables were
> missing.
> added them.
> ---
> config/cfgroot/network-functions.pl | 16 ++++++++++++----
> 1 file changed, 12 insertions(+), 4 deletions(-)
>
> diff --git a/config/cfgroot/network-functions.pl b/config/cfgroot/network-
> functions.pl
> index 93b8190..9e50d7c 100644
> --- a/config/cfgroot/network-functions.pl
> +++ b/config/cfgroot/network-functions.pl
> @@ -108,10 +108,14 @@ sub network_equal {
> my $network1 = shift;
> my $network2 = shift;
>
> - my $bin1 = &network2bin($network1);
> - my $bin2 = &network2bin($network2);
> + my @bin1 = &network2bin($network1);
> + my @bin2 = &network2bin($network2);
>
> - if ($bin1 eq $bin2) {
> + if(!defined $bin1 || !defined $bin2){
> + return undef;
> + }
> +
> + if ($bin1[0] eq $bin2[0] && $bin1[1] eq $bin2[1]){
> return 1;
> }
>
> @@ -132,6 +136,10 @@ sub network2bin($) {
>
> my $address_bin = &ip2bin($address);
> my $netmask_bin = &ip2bin($netmask);
> +
> + if (!defined $address_bin || !defined $netmask_bin){
> + return undef;
> + }
>
> my $network_start = $address_bin & $netmask_bin;
>
> @@ -457,7 +465,7 @@ sub testsuite() {
> assert(!$result);
>
> $result = &network_equal("192.168.0.1/24", "192.168.0.XXX/24");
> - assert($result);
> + assert(!$result);
>
> $result = &ip_address_in_network("10.0.1.4", "10.0.0.0/8");
> assert($result);
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2017-11-07 16:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-07 13:53 Alexander Marx
2017-11-07 16:20 ` Michael Tremer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1510071620.4838.313.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox