From: Jeffrey Altman Date: Mon, 30 May 2005 11:49:30 +0000 (+0000) Subject: not-cplusplus-20050530 X-Git-Tag: openafs-devel-1_5_0~534 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5343ad18e33b97e808fdf377bbdb2c76bb63da0d;p=packages%2Fo%2Fopenafs.git not-cplusplus-20050530 variables must be declared at the start of a block. --- diff --git a/src/vol/volume.c b/src/vol/volume.c index 9954bbf32..7eb8854e8 100644 --- a/src/vol/volume.c +++ b/src/vol/volume.c @@ -397,13 +397,15 @@ VInitVolumePackageThread(void * args) { struct DiskPartition *diskP; struct vinitvolumepackage_thread_t * params; struct diskpartition_queue_t * dpq; - int nAttached = 0, nUnattached = 0; params = (vinitvolumepackage_thread_t *) args; + VOL_LOCK; /* Attach all the volumes in this partition */ while (queue_IsNotEmpty(params)) { + int nAttached = 0, nUnattached = 0; + dpq = queue_First(params,diskpartition_queue_t); queue_Remove(dpq); VOL_UNLOCK;