diff options
author | damitha | 2010-07-07 08:44:19 +0000 |
---|---|---|
committer | damitha | 2010-07-07 08:44:19 +0000 |
commit | cca199fb8f3d610c9881444732ca4375c093fa90 (patch) | |
tree | d29032754f1bca90bba9665a51e24a6ed819ba5c /guththila | |
parent | acb8eb4a501ebed4c8df090065689d76a15552f4 (diff) | |
download | axis2c-cca199fb8f3d610c9881444732ca4375c093fa90.tar.gz axis2c-cca199fb8f3d610c9881444732ca4375c093fa90.tar.bz2 |
refer jira AXIS2C-1469
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@961305 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'guththila')
-rw-r--r-- | guththila/src/guththila_xml_parser.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guththila/src/guththila_xml_parser.c b/guththila/src/guththila_xml_parser.c index f48572f..90598bf 100644 --- a/guththila/src/guththila_xml_parser.c +++ b/guththila/src/guththila_xml_parser.c @@ -1773,8 +1773,8 @@ guththila_next_no_char( } else if(m->reader->type == GUTHTHILA_IO_READER || m->reader->type == GUTHTHILA_FILE_READER) { - if(m->next < GUTHTHILA_BUFFER_PRE_DATA_SIZE(m->buffer) - + GUTHTHILA_BUFFER_CURRENT_DATA_SIZE(m->buffer) + no && m->buffer.cur_buff != -1) + if(m->next + no <= GUTHTHILA_BUFFER_PRE_DATA_SIZE(m->buffer) + + GUTHTHILA_BUFFER_CURRENT_DATA_SIZE(m->buffer) && m->buffer.cur_buff != -1) { for(i = 0; i < no; i++) { @@ -1784,8 +1784,8 @@ guththila_next_no_char( return (int)no; /* We are sure that the difference lies within the int range */ } - else if(m->next >= GUTHTHILA_BUFFER_PRE_DATA_SIZE(m->buffer) - + GUTHTHILA_BUFFER_CURRENT_DATA_SIZE(m->buffer) + no && m->buffer.cur_buff != -1) + else if(m->next + no > GUTHTHILA_BUFFER_PRE_DATA_SIZE(m->buffer) + + GUTHTHILA_BUFFER_CURRENT_DATA_SIZE(m->buffer) && m->buffer.cur_buff != -1) { /* We are sure that the difference lies within the int range */ if(m->buffer.cur_buff == (int)m->buffer.no_buffers - 1) |