You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/tvision/files/tvision-2.1.0_pre2-underflo...

15 lines
279 B

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;
}