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  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 29 - 4 = ?

 
 [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.