bug-ncurses
[Top][All Lists]
Advanced

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

Re: ANN: ncurses-6.0-20170624


From: Thomas Dickey
Subject: Re: ANN: ncurses-6.0-20170624
Date: Mon, 26 Jun 2017 04:04:47 -0400
User-agent: Mutt/1.5.21 (2010-09-15)

On Mon, Jun 26, 2017 at 03:31:31AM +0000, Allen Hewes wrote:
> On 6/25/2017 19:35, Thomas Dickey wrote:
> > On Sun, Jun 25, 2017 at 07:03:34PM -0400, Thomas Dickey wrote:
> >> Actually, just reading the configure options in your previous mail, I 
> >> didn't
> >> see (yet) a significant difference between your/my configurations.  But 
> >> today I
> >> added a test-script with your settings, and given TERM=unknown, can see a
> >> problem to investigate (perhaps the one that your traceback/report shows).
> > 
> > For example, getting rid of the "free(TCB)" calls fixes the problem
> > which I can see:
> > 
> > diff -u -r1.56 tinfo_driver.c
> > --- tinfo_driver.c      2017/06/24 19:54:16     1.56
> > +++ tinfo_driver.c      2017/06/25 23:24:31
> > @@ -214,17 +214,17 @@
> >              || (VALID_STRING(cursor_down) && VALID_STRING(cursor_home)))
> >             && VALID_STRING(clear_screen)) {
> >             _nc_free_termtype2(&TerminalType(termp));
> > -           free(TCB);
> > +           //free(TCB);
> >             ret_error1(TGETENT_YES, "terminal is not really generic.\n", 
> > tname);
> >         } else {
> >             _nc_free_termtype2(&TerminalType(termp));
> > -           free(TCB);
> > +           //free(TCB);
> >             ret_error1(TGETENT_NO, "I need something more specific.\n", 
> > tname);
> >         }
> >      }
> >      if (hard_copy) {
> >         _nc_free_termtype2(&TerminalType(termp));
> > -       free(TCB);
> > +       //free(TCB);
> >         ret_error1(TGETENT_YES, "I can't handle hardcopy terminals.\n", 
> > tname);
> >      }
> > 
> 
> Thomas,
> 
> This patch does it for me, > gdbt.exe --tui loads without error now. I
> build two gdb binaries; a plain one gdb.exe and one with TUI gdbt.exe.
> Thanks again for the help!

no problem (now I have a way to test).

There's other issues in the port that I'll be working on, will try to
not break it for you :-)

-- 
Thomas E. Dickey <address@hidden>
http://invisible-island.net
ftp://invisible-island.net

Attachment: signature.asc
Description: Digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]