You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by da...@apache.org on 2006/11/13 09:18:45 UTC

svn commit: r474187 - in /webservices/axis2/trunk/c/xml_schema/src: Makefile.am xml_schema_builder.c xml_schema_complex_content_restriction.c

Author: damitha
Date: Mon Nov 13 00:18:45 2006
New Revision: 474187

URL: http://svn.apache.org/viewvc?view=rev&rev=474187
Log:
In one place where xml_schema_complex_content_restriction_create is needed it was
xml_schema_complex_content_create. When fixing this googlesearch.wsdl was working

Modified:
    webservices/axis2/trunk/c/xml_schema/src/Makefile.am
    webservices/axis2/trunk/c/xml_schema/src/xml_schema_builder.c
    webservices/axis2/trunk/c/xml_schema/src/xml_schema_complex_content_restriction.c

Modified: webservices/axis2/trunk/c/xml_schema/src/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/src/Makefile.am?view=diff&rev=474187&r1=474186&r2=474187
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/src/Makefile.am (original)
+++ webservices/axis2/trunk/c/xml_schema/src/Makefile.am Mon Nov 13 00:18:45 2006
@@ -45,7 +45,8 @@
 									xml_schema_complex_content.c \
 									xml_schema_attribute_group_ref.c \
 									xml_schema_input_source.c \
-									xml_schema.c 
+									xml_schema.c \
+									xml_schema_complex_content_restriction.c
 											 
 
 INCLUDES = -I$(top_builddir)/include \

Modified: webservices/axis2/trunk/c/xml_schema/src/xml_schema_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/src/xml_schema_builder.c?view=diff&rev=474187&r1=474186&r2=474187
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/src/xml_schema_builder.c (original)
+++ webservices/axis2/trunk/c/xml_schema/src/xml_schema_builder.c Mon Nov 13 00:18:45 2006
@@ -23,6 +23,7 @@
 #include <limits.h>
 #include <axis2_string.h>
 #include <axiom_util.h>
+#include <xml_schema_complex_content_restriction.h>
 
 typedef struct xml_schema_builder_impl
 {
@@ -1996,7 +1997,7 @@
     res_ele = (axiom_element_t*)
             AXIOM_NODE_GET_DATA_ELEMENT(res_node, env);
 
-    cmp_cnt_res = xml_schema_complex_content_create(env);
+    cmp_cnt_res = xml_schema_complex_content_restriction_create(env);
 
     builder_impl = AXIS2_INTF_TO_IMPL(builder);
 

Modified: webservices/axis2/trunk/c/xml_schema/src/xml_schema_complex_content_restriction.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/src/xml_schema_complex_content_restriction.c?view=diff&rev=474187&r1=474186&r2=474187
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/src/xml_schema_complex_content_restriction.c (original)
+++ webservices/axis2/trunk/c/xml_schema/src/xml_schema_complex_content_restriction.c Mon Nov 13 00:18:45 2006
@@ -117,7 +117,6 @@
 xml_schema_complex_content_restriction_create(const axis2_env_t *env)
 {
     xml_schema_complex_content_restriction_impl_t *cmp_content_res_impl = NULL;
-    axis2_status_t status = AXIS2_FAILURE;
 
     cmp_content_res_impl = (xml_schema_complex_content_restriction_impl_t*)
             AXIS2_MALLOC(env->allocator, sizeof(xml_schema_complex_content_restriction_impl_t));



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org