These macros contain a hidden goto, and are thus extremely error
prone and make code hard to audit.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2012-04-01 21:04:21 -04:00
Родитель 9d83ba4b6c
Коммит e545d71390
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1682,8 +1682,9 @@ static inline int xfrm_mark_get(struct nlattr **attrs, struct xfrm_mark *m)
static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m) static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m)
{ {
if (m->m | m->v) if ((m->m | m->v) &&
NLA_PUT(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m); nla_put(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m))
goto nla_put_failure;
return 0; return 0;
nla_put_failure: nla_put_failure: