mirror of
https://github.com/simh/simh.git
synced 2026-02-14 11:55:51 +00:00
Fix TMXR line transmit buffer allocation to always be allocated if a listening socket is open
This commit is contained in:
@@ -447,8 +447,8 @@ if (lp->modem_control) {
|
||||
if ((!lp->mp->buffered) && (!lp->txbfd)) {
|
||||
lp->txbfd = 0;
|
||||
lp->txbsz = TMXR_MAXBUF;
|
||||
lp->txb = (char *)realloc (lp->txb, lp->txbsz);
|
||||
}
|
||||
lp->txb = (char *)realloc (lp->txb, lp->txbsz);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user