Undefined variable prefix in generated code
-------------------------------------------

                 Key: AXIS2C-1572
                 URL: https://issues.apache.org/jira/browse/AXIS2C-1572
             Project: Axis2-C
          Issue Type: Bug
          Components: wsdl2c tool
    Affects Versions: 1.6.0
            Reporter: Hengli Wang


The generated code failed with an undefined variable "prefix". A close look 
shows that the code is generated by CADBBeanTemplateSource.xsl at line 539-547

                        if(prefix_found)
                        {
                            /* node value contain the prefix */
                            char *prefix_value = AXIS2_MALLOC(env->allocator, 
(cp_ro - node_value - 1) + 1);
                            strncpy(prefix, node_value, (cp_ro - node_value - 
1));
                            prefix[cp_ro - node_value - 1] = '\0';
                            qname_ns = 
axiom_element_find_namespace_uri((axiom_element_t*)axiom_node_get_data_element(parent,
 env), env, prefix_value, parent);
                            AXIS2_FREE(env->allocator, prefix_value);
                        }


I replaced prefix with prefix_value, and the generated code seems good.



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: c-dev-h...@axis.apache.org

Reply via email to