summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Graf <tgraf@redhat.com>2012-11-06 14:22:50 +0100
committerThomas Graf <tgraf@redhat.com>2012-11-06 14:22:50 +0100
commiteb3606690973420d3d402f1d8e4ac5c2b3304615 (patch)
treeb179f475f0b2ec56b3406cac301abd1b9fc18d58
parentfb42f19e2e2d02149049f3733f9a0131afc0fe65 (diff)
downloadlibnl-eb3606690973420d3d402f1d8e4ac5c2b3304615.tar.gz
nl_recv: return NLE_INVAL if buf is NULL
-rw-r--r--lib/nl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/nl.c b/lib/nl.c
index f4141e7..17bd834 100644
--- a/lib/nl.c
+++ b/lib/nl.c
@@ -464,6 +464,9 @@ int nl_recv(struct nl_sock *sk, struct sockaddr_nl *nla,
struct ucred* tmpcreds = NULL;
int retval = 0;
+ if (!buf)
+ return -NLE_INVAL;
+
if (sk->s_flags & NL_MSG_PEEK)
flags |= MSG_PEEK | MSG_TRUNC;