I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a5a70274 authored by zzz's avatar zzz
Browse files

Parser: Allow '=' in values

parent 1db76135
No related branches found
No related tags found
No related merge requests found
...@@ -266,6 +266,9 @@ class SAMUtils { ...@@ -266,6 +266,9 @@ class SAMUtils {
case '=': case '=':
if (isQuoted) { if (isQuoted) {
buf.append(c); buf.append(c);
} else if (key != null) {
// '=' in a value
buf.append(c);
} else { } else {
if (buf.length() == 0) if (buf.length() == 0)
throw new SAMException("Empty parameter name"); throw new SAMException("Empty parameter name");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment