File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -879,14 +879,14 @@ var PSCLSID = {
879
879
} ;
880
880
function parse_xls_props ( cfb /*:CFBContainer*/ , props , o ) {
881
881
/* [MS-OSHARED] 2.3.3.2.2 Document Summary Information Property Set */
882
- var DSI = CFB . find ( cfb , '!DocumentSummaryInformation' ) ;
882
+ var DSI = CFB . find ( cfb , '/ !DocumentSummaryInformation' ) ;
883
883
if ( DSI && DSI . size > 0 ) try {
884
884
var DocSummary = parse_PropertySetStream ( DSI , DocSummaryPIDDSI , PSCLSID . DSI ) ;
885
885
for ( var d in DocSummary ) props [ d ] = DocSummary [ d ] ;
886
886
} catch ( e ) { if ( o . WTF ) throw e ; /* empty */ }
887
887
888
888
/* [MS-OSHARED] 2.3.3.2.1 Summary Information Property Set*/
889
- var SI = CFB . find ( cfb , '!SummaryInformation' ) ;
889
+ var SI = CFB . find ( cfb , '/ !SummaryInformation' ) ;
890
890
if ( SI && SI . size > 0 ) try {
891
891
var Summary = parse_PropertySetStream ( SI , SummaryPIDSI , PSCLSID . SI ) ;
892
892
for ( var s in Summary ) if ( props [ s ] == null ) props [ s ] = Summary [ s ] ;
You can’t perform that action at this time.
0 commit comments