From kde-commits Thu Apr 07 15:46:18 2005 From: Tobias Anton Date: Thu, 07 Apr 2005 15:46:18 +0000 To: kde-commits Subject: Re: kdelibs/khtml Message-Id: <200504071746.19068.tobias.anton () esc-electronics ! de> X-MARC-Message: https://marc.info/?l=kde-commits&m=111288996926739 Am Dienstag, 5. April 2005 14:21 schrieb Luboš Luňák: > +again: > + Yuck! > - // don't return until necessary! > jsrc.decoder_timestamp.restart(); > state = decompressStarted; > + // don't return until necessary! > + goto again; Yuck-yuck! Who taught you this coding style? What about a "do ... while (!necessary);" or even a "do { ... continue; } while (false);" loop? Cheers Tobias