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 = {
879879} ;
880880function parse_xls_props ( cfb /*:CFBContainer*/ , props , o ) {
881881 /* [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' ) ;
883883 if ( DSI && DSI . size > 0 ) try {
884884 var DocSummary = parse_PropertySetStream ( DSI , DocSummaryPIDDSI , PSCLSID . DSI ) ;
885885 for ( var d in DocSummary ) props [ d ] = DocSummary [ d ] ;
886886 } catch ( e ) { if ( o . WTF ) throw e ; /* empty */ }
887887
888888 /* [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' ) ;
890890 if ( SI && SI . size > 0 ) try {
891891 var Summary = parse_PropertySetStream ( SI , SummaryPIDSI , PSCLSID . SI ) ;
892892 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