diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-03-18 07:15:05 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-03-20 18:17:40 -0400 |
| commit | d1ba1814bc17c4c029e85552048e64eca78f5ce8 (patch) | |
| tree | 47f20b710f4ff2749f776b56645bd8d6e437ca2f /lib/mlag.c | |
| parent | 7791cff31f4538690bbfa11de4cf4e576b13cae8 (diff) | |
lib: Ensure pointer exists before using in mlag
Ensure that the s pointer is valid and usable before
grabbing data off of it.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/mlag.c')
| -rw-r--r-- | lib/mlag.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/mlag.c b/lib/mlag.c index 733dd41ea8..653fbe8fe9 100644 --- a/lib/mlag.c +++ b/lib/mlag.c @@ -85,9 +85,12 @@ int mlag_lib_decode_mlag_hdr(struct stream *s, struct mlag_msg *msg, size_t *length) { #define LIB_MLAG_HDR_LENGTH 8 + if (s == NULL || msg == NULL) + return -1; + *length = stream_get_endp(s); - if (s == NULL || msg == NULL || *length < LIB_MLAG_HDR_LENGTH) + if (*length < LIB_MLAG_HDR_LENGTH) return -1; *length -= LIB_MLAG_HDR_LENGTH; |
