Bugzilla – Attachment 159546 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]
Better version of fix
parhtml.patch (text/plain), 1.30 KB, created by
Pavel
on 2020-04-14 05:05:29 UTC
(
hide
)
Description:
Better version of fix
Filename:
MIME Type:
Creator:
Pavel
Created:
2020-04-14 05:05:29 UTC
Size:
1.30 KB
patch
obsolete
>383c383,384 >< OUStringBuffer sTmpBuffer( MAX_LEN ); >--- >> sal_Int32 iBufferLen = MAX_LEN; >> OUStringBuffer sTmpBuffer( iBufferLen ); >596c597 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( iBufferLen == sTmpBuffer.getLength() ) >599a601,606 >> >> if ( iBufferLen > 0 ) { >> iBufferLen *= 2; >> sTmpBuffer.ensureCapacity(iBufferLen); >> } >> >637c644 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( iBufferLen == sTmpBuffer.getLength() ) >640a648,652 >> >> if ( iBufferLen > 0 ) { >> iBufferLen *= 2; >> sTmpBuffer.ensureCapacity(iBufferLen); >> } >764c776 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( iBufferLen == sTmpBuffer.getLength() ) >767a780,784 >> >> if ( iBufferLen > 0 ) { >> iBufferLen *= 2; >> sTmpBuffer.ensureCapacity(iBufferLen); >> } >782c799 >< if( MAX_LEN == sTmpBuffer.getLength() ) >--- >> if( iBufferLen == sTmpBuffer.getLength() ) >785a803,807 >> >> if ( iBufferLen > 0 ) { >> iBufferLen *= 2; >> sTmpBuffer.ensureCapacity(iBufferLen); >> }
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