aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2015-03-20 16:05:13 +0000
committerAlexander Motin <mav@FreeBSD.org>2015-03-20 16:05:13 +0000
commit8187174a9b375c7ec6128cd003ac54aa0c90379a (patch)
tree5f7d4ccb153f4981c70450fd9a803975f54fb29b /usr.sbin
parent0e2a18e657664b461e8394fff487c1d5c355f403 (diff)
downloadsrc-8187174a9b375c7ec6128cd003ac54aa0c90379a.tar.gz
src-8187174a9b375c7ec6128cd003ac54aa0c90379a.zip
Add missing variable initialization.
Reported by: Coverity CID: 1288938 MFC after: 3 days
Notes
Notes: svn path=/head/; revision=280293
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bhyve/pci_ahci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bhyve/pci_ahci.c b/usr.sbin/bhyve/pci_ahci.c
index d8a2f1921300..e8cb2da6fcb2 100644
--- a/usr.sbin/bhyve/pci_ahci.c
+++ b/usr.sbin/bhyve/pci_ahci.c
@@ -1759,7 +1759,7 @@ ata_ioreq_cb(struct blockif_req *br, int err)
DPRINTF("%s %d\n", __func__, err);
- ncq = 0;
+ ncq = dsm = 0;
aior = br->br_param;
p = aior->io_pr;
cfis = aior->cfis;