From c87f16b41ebcf5f3f52dee36d6c6709afbe22386 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Fri, 25 Jan 2013 00:02:28 +0000 Subject: [PATCH] Eliminate compiler warning in some build modes git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4745 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/dev_handlers/scst_vdisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/dev_handlers/scst_vdisk.c b/scst/src/dev_handlers/scst_vdisk.c index 806217718..0ef0f1d1a 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -4007,7 +4007,7 @@ static enum compl_status_e fileio_exec_verify(struct vdisk_cmd_params *p) mm_segment_t old_fs; loff_t err; ssize_t length, len_mem = 0; - uint8_t *address_sav, *address; + uint8_t *address_sav, *address = NULL; int compare; struct scst_vdisk_dev *virt_dev = cmd->dev->dh_priv; struct file *fd = virt_dev->fd;