From: Giuseppe Di Natale Date: Wed, 5 Apr 2017 20:21:10 +0000 (-0700) Subject: Fix coverity defects: CID 161264 X-Git-Tag: zfs-0.7.0-rc4~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b0ecd2f2f069769218d3001998a78ed8d0a19bc;p=zfs Fix coverity defects: CID 161264 CID 161264: Uninitialized variables (UNINIT) In _zed_event_add_nvpair, when handling DATA_TYPE_UINT64, we should be using i64 throughout the entire case. Reviewed-by: George Melikov Reviewed-by: Brian Behlendorf Reviewed-by: Don Brady Signed-off-by: Giuseppe Di Natale Closes #5964 --- diff --git a/cmd/zed/zed_event.c b/cmd/zed/zed_event.c index aecdb5146..390235019 100644 --- a/cmd/zed/zed_event.c +++ b/cmd/zed/zed_event.c @@ -662,7 +662,7 @@ _zed_event_add_nvpair(uint64_t eid, zed_strings_t *zsp, nvpair_t *nvp) (void) snprintf(alt, sizeof (alt), "%s_str", name); _zed_event_add_var(eid, zsp, prefix, alt, "%s", - zpool_pool_state_to_name(i32)); + zpool_pool_state_to_name(i64)); } break; case DATA_TYPE_DOUBLE: