summaryrefslogtreecommitdiff
blob: d693a359a6cf940a14da542f2e540fca21dc6508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Bug #160591; fixes a buffer underflow.
Reported by B Douglas Hilton <b.d.hilton@verizon.net>

--- tvision/classes/ttermina.cc
+++ tvision/classes/ttermina.cc
@@ -233,7 +233,7 @@
          }
       }
    }
- while (pos-->=queBack);
+ while (pos-->queBack);
 
  return queBack;
 }