| 232 | | rc = xmlTextWriterWriteRaw(writer, xmlTextReaderConstValue(parser->reader)); |
|---|
| | 232 | // FIXME: The parser removes CR from the second chunk |
|---|
| | 233 | // FIXME: of an item of moreData. This makes the received item |
|---|
| | 234 | // FIXME: length invalid. The sender definitely |
|---|
| | 235 | // FIXME: sends the CR LF correctly (verified via |
|---|
| | 236 | // FIXME: wireshark and debug output of smlXmlParserStart) |
|---|
| | 237 | // FIXME: but it is missing in data. |
|---|
| | 238 | char const *data = xmlTextReaderConstValue(parser->reader); |
|---|
| | 239 | smlTrace(TRACE_INTERNAL, "%s: from reader: %s", __func__, data); |
|---|
| | 240 | rc = xmlTextWriterWriteRaw(writer, data); |
|---|