Kaydet (Commit) 9390ff13 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#705102 try and help coverity out re infinite loop

Change-Id: I04fee0ebe13e6f3ab8f517c99929d30ecbc7fd62
üst 80afec77
...@@ -5956,8 +5956,8 @@ WW8Style::WW8Style(SvStream& rStream, WW8Fib& rFibPara) ...@@ -5956,8 +5956,8 @@ WW8Style::WW8Style(SvStream& rStream, WW8Fib& rFibPara)
if( 20 < nRead ) if( 20 < nRead )
rSt.SeekRel( nRead-20 ); rSt.SeekRel( nRead-20 );
} }
while( !this ); // Trick: obiger Block wird genau einmal durchlaufen while( 0 ); // Trick: obiger Block wird genau einmal durchlaufen
// und kann vorzeitig per "break" verlassen werden. // und kann vorzeitig per "break" verlassen werden.
nRemaining -= cbStshi; nRemaining -= cbStshi;
......
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