This should resolve a Coverity warning:
CID 702208 (#1 of 1): Uninitialized scalar variable (UNINIT)
2. uninit_use_in_call: Using uninitialized element of array
"l2info.cookie" when calling "juniper_parse_header"
#include <netdissect-stdinc.h>
+#include <string.h>
+
#include "netdissect.h"
#include "addrtoname.h"
#include "extract.h"
{
struct juniper_l2info_t l2info;
+ memset(&l2info, 0, sizeof(l2info));
l2info.pictype = DLT_JUNIPER_MFR;
if (juniper_parse_header(ndo, p, h, &l2info) == 0)
return l2info.header_len;