Re: Odd bit of code...

2001-10-01 Thread Dominik Vogt
On Sat, Sep 29, 2001 at 03:50:06AM -0400, Suzanne Britton wrote: > Greets, > > I've been playing with the fvwm code lately, and I just noticed this odd bit > in DestroyFvwmDecor (builtins.c): > > for (i = 0; i < BS_MaxButtonState; ++i) > { > int j = 0; > for (; j < BS_MaxButtonState;

Odd bit of code...

2001-09-29 Thread Suzanne Britton
Greets, I've been playing with the fvwm code lately, and I just noticed this odd bit in DestroyFvwmDecor (builtins.c): for (i = 0; i < BS_MaxButtonState; ++i) { int j = 0; for (; j < BS_MaxButtonState; ++j) FreeDecorFace(dpy, &TB_STATE(decor->titlebar)[i]); } Is the inner loo