Fix compile errors on ia64 in dagetcapacity. Set block_len and maxsector

to 0 initially.  It seems that the ia64 backend isn't as "smart" as the
i386 backend, which realized that those variables were only set or used
when error == 0, and thus were not used uninitialized.
This commit is contained in:
Kenneth D. Merry 2003-05-01 05:16:13 +00:00
parent 8e3a76fb6f
commit 512563b060
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114388

View File

@ -1785,6 +1785,8 @@ dagetcapacity(struct cam_periph *periph)
int error;
softc = (struct da_softc *)periph->softc;
block_len = 0;
maxsector = 0;
error = 0;
/* Do a read capacity */