You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by na...@apache.org on 2010/06/30 13:16:07 UTC

svn commit: r959265 - /axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c

Author: nandika
Date: Wed Jun 30 11:16:07 2010
New Revision: 959265

URL: http://svn.apache.org/viewvc?rev=959265&view=rev
Log:
building error corrected

Modified:
    axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c

Modified: axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c?rev=959265&r1=959264&r2=959265&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c (original)
+++ axis/axis2/c/core/trunk/src/core/deployment/desc_builder.c Wed Jun 30 11:16:07 2010
@@ -188,16 +188,17 @@ axis2_desc_builder_build_om(
      */
     document = axiom_stax_builder_get_document(builder, env);
 
-    /**
+	/**
+     get root element , building starts hear
+     */
+
+	desc_builder->root = axiom_document_get_root_element(document, env);
+	/**
      * In description building we don't want defferred building. So build
      * the whole tree at once
      */
     axiom_document_build_all(document, env);
-
-    /**
-     get root element , building starts hear
-     */
-    desc_builder->root = axiom_document_get_root_element(document, env);
+    
     /**
      We have built the whole document. So no need of keeping the builder.
      */