Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Deadlock-Bug in Master-Timer



#include <hallo.h>




If there is a timer which contains 3 digits and then a dash. (e.g. "123-")
then Master-Timer hangs forever.

Bug is in "svdr.pl" in line 78.
This statement:
      last if (!/\d{3}-/);
must be changed into this:
      last if (!/^\d{3}-/);

(The bug is that it searched the (End-)status-code anywhere in the line.
Not only at the beginning of the line.)




Bis denn

-- 
Real Programmers consider "what you see is what you get" to be just as
bad a concept in Text Editors as it is in women. No, the Real Programmer
wants a "you asked for it, you got it" text editor -- complicated,
cryptic, powerful, unforgiving, dangerous.






Home | Main Index | Thread Index