https://bz.apache.org/ooo/show_bug.cgi?id=91028
--- Comment #13 from Peter <[email protected]> --- Looking at the code modifying ByteString itself would be the most preferably approach. We replace the structure ByteStringData with a Container in the ByteString Class (line 163 in inc/string.hxx). I think the change would have limited risk, and extend the limits we see at the moment. I am not sure how the ByteStream::Append method is working, since in source/string/tstring.cxx I could not find an append methods, but I think it implementations of various other methods of ByteString. Because we append a lot, Vector does not feel suitable as a container. I would pick std::deque<sal_Char>. We need to redefine the ByteString Methods in order to use the Container properly. -- You are receiving this mail because: You are on the CC list for the issue. You are the assignee for the issue.
