diff options
author | damitha | 2010-02-19 11:20:26 +0000 |
---|---|---|
committer | damitha | 2010-02-19 11:20:26 +0000 |
commit | 57e236afda35c3885bc881e6900077a1fe3ec4f2 (patch) | |
tree | 7724099549b578efa2b7a53defdc240afd95b94e | |
parent | 20d2848e498800fc52fa00a466cde21e51b11a03 (diff) | |
download | axis2c-57e236afda35c3885bc881e6900077a1fe3ec4f2.tar.gz axis2c-57e236afda35c3885bc881e6900077a1fe3ec4f2.tar.bz2 |
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@911787 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/core/description/svc_grp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/description/svc_grp.c b/src/core/description/svc_grp.c index 6534865..9417654 100644 --- a/src/core/description/svc_grp.c +++ b/src/core/description/svc_grp.c @@ -440,7 +440,7 @@ axis2_svc_grp_engage_module( AXIS2_PARAM_CHECK(env->error, module_name, AXIS2_FAILURE); size = axutil_array_list_size(svc_grp->module_qname_list, env); - for(i = 0; size; i++) + for(i = 0; i < size; i++) { modu = axutil_array_list_get(svc_grp->module_qname_list, env, i); modu_local = axutil_qname_get_localpart(modu, env); |