--- biff8.rb.old 2011-01-17 08:32:30.827787752 +0100 +++ biff8.rb.new 2011-01-17 08:36:29.882787265 +0100 @@ -39,11 +39,15 @@ owing = @incomplete_sst.continued_chars size = [work.size, owing * (1 + wide) + 1].min chars = (size - 1) / (1 + wide) + skip = size @incomplete_sst.continue oppos + OPCODE_SIZE, size, chars unless @incomplete_sst.continued? + @workbook.add_shared_string @incomplete_sst + skip += @incomplete_skip @incomplete_sst = nil + @incomplete_skip = nil end - size + skip end ## # Read more data into the Shared String Table. (see also: #read_sst) @@ -52,13 +56,16 @@ pos = 0 if @incomplete_sst pos = continue_string_header work, oppos + elsif !@incomplete_skip.nil? + pos = @incomplete_skip + @incomplete_skip = nil end @sst_offset[1] += len _read_sst work, oppos, pos end def postread_workbook # :nodoc: super - @incomplete_string, @sst_size, @sst_offset, @incomplete_sst = nil + @incomplete_string, @sst_size, @sst_offset, @incomplete_sst = nil, @incomplete_skip = nil end ## # Store the offset of extsst, so we can write a new extsst when the @@ -175,9 +182,15 @@ sst.wide = wide > 0 if sst.continued? @incomplete_sst = sst + @incomplete_skip = skip + pos += sst.available + else + @workbook.add_shared_string sst + pos += sst.available + skip + if pos > worksize + @incomplete_skip = pos - worksize + end end - @workbook.add_shared_string sst - pos += sst.available + skip end end end