Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.0.0RC3

Bug #21175 Corrupt OLE header generated for files approximately 7mb in size.
Submitted: 2017-02-02 08:01 UTC
From: obarshay Assigned:
Status: Open Package: OLE (version 1.0.0RC2)
PHP Version: Irrelevant OS:
Roadmaps: (Not assigned)    
Subscription  


 [2017-02-02 08:01 UTC] obarshay (Oleg Barshay)
Description: ------------ When the total number of block pointers is 109 (the number that can fit in the header), an extension block pointer is added to the header. To fix, make the following change to Root.php:259 if ($iBdCnt < $i1stBdL) { to: if ($iBdCnt <= $i1stBdL) {

Comments

 [2018-10-31 06:11 UTC] sanmai (Alexey Kopytko)
Would you be willing to provide a test case for this issue? Something like a several lines long script would work best. Thanks.