[ https://issues.apache.org/jira/browse/AXIS2C-927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Dinesh Premalal resolved AXIS2C-927. ------------------------------------ Resolution: Fixed Fix Version/s: 1.2.1 Assignee: Dinesh Premalal patch applied ! Thanks Bill for the patch. > axiom_element_declare_default_namespace fails when no namespace already > declared > -------------------------------------------------------------------------------- > > Key: AXIS2C-927 > URL: https://issues.apache.org/jira/browse/AXIS2C-927 > Project: Axis2-C > Issue Type: Bug > Environment: Windows XP, Visual Studio 2005, guththila, libcurl > Reporter: Bill Mitchell > Assignee: Dinesh Premalal > Fix For: 1.2.1 > > Attachments: om_element_diff > > > If axiom_element_declare_default_namespace() is called before any named > namespace is declared, it fails to perform the axutil_hash_make and as a > result axutil_hash_set crashes on the empty namespace pointer. > The code fragment: > if (om_element->namespaces) > { > om_element->namespaces = axutil_hash_make(env); > if (!(om_element->namespaces)) > { > return NULL; > } > } > should read: > if (!om_element->namespaces) > { > om_element->namespaces = axutil_hash_make(env); > if (!(om_element->namespaces)) > { > return NULL; > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]