diff options
author | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-18 18:03:23 +0000 |
---|---|---|
committer | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-18 18:03:23 +0000 |
commit | 186d40a8ebd1793a5bce06baea7d8415a8e26c5c (patch) | |
tree | b785e85c05d9bc7b9465c4344f150316b57ee045 /TAO/tao/Policy_Set.cpp | |
parent | c25ed8155f5a67e9542a8fa6dbc6eb36cde14f80 (diff) | |
download | ATCD-186d40a8ebd1793a5bce06baea7d8415a8e26c5c.tar.gz |
ChangeLogTag:Mon Jun 18 13:01:32 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Policy_Set.cpp')
-rw-r--r-- | TAO/tao/Policy_Set.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TAO/tao/Policy_Set.cpp b/TAO/tao/Policy_Set.cpp index 3f137cd6df3..b4adc644827 100644 --- a/TAO/tao/Policy_Set.cpp +++ b/TAO/tao/Policy_Set.cpp @@ -106,8 +106,10 @@ TAO_Policy_Set::copy_from (TAO_Policy_Set *source, void TAO_Policy_Set::cleanup_i (CORBA::Environment &ACE_TRY_ENV) { + CORBA::ULong i; + // Cleanup the policy list. - for (CORBA::ULong i = 0; + for (i = 0; i < this->policy_list_.length (); ++i) { |