* Fix bug 426 <http://helma.org/bugs/show_bug.cgi?id=426>
This commit is contained in:
parent
3526050006
commit
6c5e37fb76
1 changed files with 6 additions and 2 deletions
|
@ -759,8 +759,12 @@ public abstract class AbstractServletClient extends HttpServlet {
|
|||
break;
|
||||
|
||||
case '=':
|
||||
key = new String(data, 0, ox, encoding);
|
||||
ox = 0;
|
||||
if (key == null) {
|
||||
key = new String(data, 0, ox, encoding);
|
||||
ox = 0;
|
||||
} else {
|
||||
data[ox++] = c;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue