diff options
author | nandika | 2011-01-14 18:16:09 +0000 |
---|---|---|
committer | nandika | 2011-01-14 18:16:09 +0000 |
commit | 1c5bff52616d792ab987de701be239bfabf7282e (patch) | |
tree | 8d5c720ff44831a3c00e51d78d43fd0104b585c0 /axiom | |
parent | 4f694fc357eb2fe9a417f6d8905319f074ff92ea (diff) | |
download | axis2c-1c5bff52616d792ab987de701be239bfabf7282e.tar.gz axis2c-1c5bff52616d792ab987de701be239bfabf7282e.tar.bz2 |
applied fix for Axis2C Jira issue 1528
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1059092 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'axiom')
-rw-r--r-- | axiom/src/util/om_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/axiom/src/util/om_util.c b/axiom/src/util/om_util.c index 51ba749..b3c082a 100644 --- a/axiom/src/util/om_util.c +++ b/axiom/src/util/om_util.c @@ -785,7 +785,7 @@ axiom_util_get_first_child_element_with_localname_attr( om_attr_name, attr_name) == 0 && axutil_strcmp(om_attr_value, attr_value) == 0) { - *child_node = child; + *child_node = next_sibling; return om_ele; } om_attr = NULL; |