* [patch 0/7 v2] selinux: return proper error codes instead of -1
@ 2010-06-12 18:49 Dan Carpenter
0 siblings, 0 replies; only message in thread
From: Dan Carpenter @ 2010-06-12 18:49 UTC (permalink / raw)
To: Stephen Smalley; +Cc: James Morris, Eric Paris, selinux
I've respun these patches based on Eric's feedback. It was mostly to
use "rc" consistently instead of "ret" and also to use "if (rc)" instead
of "if (rc < 0)".
One thing which I didn't really change was in [patch 3/7].
On Tue, Jun 08, 2010 at 04:12:18PM -0400, Eric Paris wrote:
> I'm not in love with this one. The change in cond_read_av_list() is
> fine, but the style and completeness in cond_insertf I think is even
> worse. My biggest problem is the fact that you sent an error code at
> the top and just sorta leave it. There are still lots of
>
> if (function())
> goto err;
>
> which really should be
>
> rc = function()
> if (rc)
> goto err;
>
The problem is those functions in cond_insertf() don't return error
codes, they return pointers and NULL. I could put an:
rc = -EINVAL;
in front of each goto but that seems awkward. I did change one of the
cond_insertf() returns to -ENOMEM where my first patch left it as
-EINVAL, but otherwise I basically left that function the same.
Everything else should be OK though.
regards,
dan carpenter
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-06-18 17:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-12 18:49 [patch 0/7 v2] selinux: return proper error codes instead of -1 Dan Carpenter
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.