You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Ortwin Glück <or...@nose.ch> on 2002/09/23 16:19:18 UTC

[PATCH] bug 12607

As suggested by Martin Elwin.

Patch is for .../src/java/

Should we throw an Exception instead of this:
} else {
      // this was not CRLF, so now write '\r' + this char
      baos.write('\r');
      baos.write(b);
      state = 0;
}

I mean having \r inside a chunk size field is illegal and thus a 
protocol violation. Comments from the "real world"?