From 5343ad18e33b97e808fdf377bbdb2c76bb63da0d Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Mon, 30 May 2005 11:49:30 +0000 Subject: [PATCH] not-cplusplus-20050530 variables must be declared at the start of a block. --- src/vol/volume.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vol/volume.c b/src/vol/volume.c index 9954bbf..7eb8854 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; -- 1.9.4