Bugzilla – Attachment 159538 Details for
Bug 131951
FILEOPEN: Quadratic time on reading and converting html files with images
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Possible solution
parhtml.txt (text/plain), 1.09 KB, created by
Pavel
on 2020-04-13 15:30:48 UTC
(
hide
)
Description:
Possible solution
Filename:
MIME Type:
Creator:
Pavel
Created:
2020-04-13 15:30:48 UTC
Size:
1.09 KB
patch
obsolete
>383c383,384 >< OUStringBuffer sTmpBuffer( MAX_LEN ); >--- >> sal_Int32 bufferLen = MAX_LEN; >> OUStringBuffer sTmpBuffer( bufferLen ); >596c597 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( bufferLen == sTmpBuffer.getLength() ) >599a601,603 >> >> bufferLen *= 2; >> sTmpBuffer.ensureCapacity(bufferLen); >637c641 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( bufferLen == sTmpBuffer.getLength() ) >640a645,647 >> >> bufferLen *= 2; >> sTmpBuffer.ensureCapacity(bufferLen); >764c771 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( bufferLen == sTmpBuffer.getLength() ) >767a775,777 >> >> bufferLen *= 2; >> sTmpBuffer.ensureCapacity(bufferLen); >782c792 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( bufferLen == sTmpBuffer.getLength() ) >785a796,798 >> >> bufferLen *= 2; >> sTmpBuffer.ensureCapacity(bufferLen);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 131951
:
159381
|
159382
|
159383
|
159384
|
159512
|
159538
|
159546