Kaydet (Commit) 964000d4 authored tarafından Caolán McNamara's avatar Caolán McNamara

min legal size here is > 4

(cherry picked from commit 3131205c)

Change-Id: I9f68d000b32623db4d949d13284043630f5689f4
üst cd3e5dde
......@@ -222,7 +222,7 @@ SvStream& ReadJobSetup( SvStream& rIStream, JobSetup& rJobSetup )
{
sal_uInt16 nLen = 0;
rIStream.ReadUInt16( nLen );
if ( !nLen )
if (nLen <= 4)
return rIStream;
sal_uInt16 nSystem = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment