Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jun 2023 13:52:37 -0800
From:      Rob Wing <rob.fx907@gmail.com>
To:        "Simon J. Gerraty" <sjg@juniper.net>
Cc:        Jessica Clarke <jrtc27@freebsd.org>, Mitchell Horne <mhorne@freebsd.org>,  "src-committers@freebsd.org" <src-committers@freebsd.org>,  "dev-commits-src-all@freebsd.org" <dev-commits-src-all@freebsd.org>,  "dev-commits-src-main@freebsd.org" <dev-commits-src-main@freebsd.org>
Subject:   Re: git: 56f3f2d2491e - main - libsecureboot: avoid set but not used errors
Message-ID:  <CAF3%2Bn_e9oSVh=jD-AeTPA0nfEpVkG2zyj8Cs-EL3=p4r92O7xg@mail.gmail.com>
In-Reply-To: <79845.1688159657@kaos.jnpr.net>
References:  <202306300652.35U6qpgP027126@gitrepo.freebsd.org> <667C347E-B7C7-405B-AFEC-F0A0FD0656F6@freebsd.org> <498f3ba2-dc7a-e7d3-626a-76ca68cee5b2@freebsd.org> <B59305E1-680B-4793-9779-B872E76B6A34@freebsd.org> <79845.1688159657@kaos.jnpr.net>

next in thread | previous in thread | raw e-mail | index | archive | help
--00000000000030d3d505ff5fd3a6
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Looking at this snippet:

+       if (!cn.status) {
                buf =3D NULL;
+               if (err =3D=3D 0)           /* keep compiler happy */
+                       buf =3D NULL;
+       }
        return (buf);
 }

And considering the comment at contrib/bearssl/inc/bearssl_x509.h
<https://github.com/freebsd/freebsd-src/blob/eb33b693b364a4547dfcfd21c159ff=
c4fb339bc2/contrib/bearssl/inc/bearssl_x509.h#L616>,
is it intended for buf to be returned as-is (i.e., not set to NULL) when
the decoding status indicates an error condition?


On Fri, Jun 30, 2023 at 1:14=E2=80=AFPM Simon J. Gerraty <sjg@juniper.net> =
wrote:

> Jessica Clarke <jrtc27@freebsd.org> wrote:
> > A conditional assignment of the same value that has already been
> > assigned unconditionally is unidiomatic code generally regarded as a
> > code smell and should be avoided. In an ideal world that would give a
>
> I agree.
>
> I've been bitten by __unused recently when porting stuff to linux
> so was looking to avoid that.
>
>

--00000000000030d3d505ff5fd3a6
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div>Looking at this snippet:<br></div><div><br></div><div=
>+=C2=A0 =C2=A0 =C2=A0 =C2=A0if (!cn.status) {</div>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 buf =3D NULL;<br>
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0if (err =3D=3D 0)=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0/* keep compiler happy */<br>
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0buf =3D NULL;<br>
+=C2=A0 =C2=A0 =C2=A0 =C2=A0}<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 return (buf);<br><div>
=C2=A0}</div><div><br></div><div>And considering the comment at <a href=3D"=
https://github.com/freebsd/freebsd-src/blob/eb33b693b364a4547dfcfd21c159ffc=
4fb339bc2/contrib/bearssl/inc/bearssl_x509.h#L616">contrib/bearssl/inc/bear=
ssl_x509.h</a>, is it intended for buf to be returned as-is (i.e., not set =
to NULL) when the decoding status indicates an error condition?<br></div><d=
iv><br></div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D=
"gmail_attr">On Fri, Jun 30, 2023 at 1:14=E2=80=AFPM Simon J. Gerraty &lt;<=
a href=3D"mailto:sjg@juniper.net">sjg@juniper.net</a>&gt; wrote:<br></div><=
blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-l=
eft:1px solid rgb(204,204,204);padding-left:1ex">Jessica Clarke &lt;<a href=
=3D"mailto:jrtc27@freebsd.org" target=3D"_blank">jrtc27@freebsd.org</a>&gt;=
 wrote:<br>
&gt; A conditional assignment of the same value that has already been<br>
&gt; assigned unconditionally is unidiomatic code generally regarded as a<b=
r>
&gt; code smell and should be avoided. In an ideal world that would give a<=
br>
<br>
I agree.<br>
<br>
I&#39;ve been bitten by __unused recently when porting stuff to linux<br>
so was looking to avoid that.<br>
<br>
</blockquote></div>

--00000000000030d3d505ff5fd3a6--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAF3%2Bn_e9oSVh=jD-AeTPA0nfEpVkG2zyj8Cs-EL3=p4r92O7xg>