in reply to Re: Buffer overflow
in thread Buffer overflow
Note the $TEST variable. When I run what you see above, it has the problem. But the program works when I try and fool it like this:#!/usr/bin/perl my $TIMER = 10; $TEST = 1; while ($TEST == 1) { do "mrtgnav.pl"; sleep $TIMER; $TEST = 1; }
Help. My head is starting to hurt...#!/usr/bin/perl my $TIMER = 10; $TEST = 1; while ($TEST == 1) { do "mrtgnav.pl"; sleep $TIMER; $TEST = 0; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Buffer overflow
by ChemBoy (Priest) on Jul 07, 2001 at 10:39 UTC | |
by mikeo (Initiate) on Jul 09, 2001 at 18:37 UTC | |
by PrakashK (Pilgrim) on Jul 09, 2001 at 20:57 UTC |