mirror of https://github.com/apache/poi.git
Fixed some bad string length handling.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc50a990d1
commit
f2eda0957e
|
@ -126,7 +126,7 @@ public class BoundSheetRecord
|
|||
field_3_sheetname_length = data[ 6 + offset ];
|
||||
field_4_compressed_unicode_flag = data[ 7 + offset ];
|
||||
field_5_sheetname = new String(data, 8 + offset,
|
||||
( int ) field_3_sheetname_length);
|
||||
LittleEndian.ubyteToInt( field_3_sheetname_length));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -165,7 +165,7 @@ public class FontRecord
|
|||
if (data[ 15 ] == 0)
|
||||
{ // is compressed unicode
|
||||
field_11_font_name = new String(data, 16,
|
||||
field_10_font_name_len);
|
||||
LittleEndian.ubyteToInt(field_10_font_name_len));
|
||||
}
|
||||
else
|
||||
{ // is not compressed unicode
|
||||
|
|
|
@ -121,7 +121,7 @@ public class FormatRecord
|
|||
field_2_formatstring_len = data[ 2 + offset ];
|
||||
field_3_zero = LittleEndian.getShort(data, 3 + offset);
|
||||
field_4_formatstring = new String(data, 5 + offset,
|
||||
field_2_formatstring_len);
|
||||
LittleEndian.ubyteToInt(field_2_formatstring_len));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -135,7 +135,7 @@ public class StyleRecord
|
|||
{
|
||||
field_2_name_length = data[ 2 + offset ];
|
||||
field_3_name = new String(data, 3 + offset,
|
||||
field_2_name_length);
|
||||
LittleEndian.ubyteToInt(field_2_name_length));
|
||||
}
|
||||
|
||||
// todo sanity check exception to make sure we're one or the other
|
||||
|
|
Loading…
Reference in New Issue