diff options
author | Sagi Grimberg <sagig@mellanox.com> | 2015-06-29 13:07:06 +0300 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2015-07-06 17:07:30 -0700 |
commit | 9b353cc8f199e4bc78023e8300306b5a16b48e75 (patch) | |
tree | ff2d9a8d288db9da281bd305429b55a17d862ed1 /drivers/target | |
parent | 1c4c7159ed2468f3ac4ce5a7f08d79663d381a93 (diff) | |
download | linux-9b353cc8f199e4bc78023e8300306b5a16b48e75.tar.bz2 |
target/pr: Fix possible uninitialized variable usage
Triggered a compilation warning.
Fixes: 2650d71e2 target: move transport ID handling to the core
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/target_core_pr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c index 0fdbe43b7dad..5ab7100de17e 100644 --- a/drivers/target/target_core_pr.c +++ b/drivers/target/target_core_pr.c @@ -1474,7 +1474,7 @@ core_scsi3_decode_spec_i_port( LIST_HEAD(tid_dest_list); struct pr_transport_id_holder *tidh_new, *tidh, *tidh_tmp; unsigned char *buf, *ptr, proto_ident; - const unsigned char *i_str; + const unsigned char *i_str = NULL; char *iport_ptr = NULL, i_buf[PR_REG_ISID_ID_LEN]; sense_reason_t ret; u32 tpdl, tid_len = 0; |