Re: [bug] reproducible crash in channel test when using the athena gui

2016-03-05 Fir de Conversatie Bram Moolenaar
Dominique wrote: > I see a reproducible crash with vim-7.4.1494 (and older) > on xubuntu-14.04 x86_64 when doing: > > $ ./configure --with-features=normal --enable-gui=athena > --enable-channel=yes > $ make > $ cd src/testdir > $ make test_channel.res > ... > Vim: Caught deadly

[bug] reproducible crash in channel test when using the athena gui

2016-03-05 Fir de Conversatie Dominique Pellé
Hi I see a reproducible crash with vim-7.4.1494 (and older) on xubuntu-14.04 x86_64 when doing: $ ./configure --with-features=normal --enable-gui=athena --enable-channel=yes $ make $ cd src/testdir $ make test_channel.res ... Vim: Caught deadly signal SEGV Vim: Finished.

Re: Crash with channel

2016-02-16 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: > Steps to reproduce: > :" 1 > :echo ch_open("noserver") > > :" 2 > :let c = ch_open("noserver") > :let d = c > > > There is no NULL check for fail channel. > And two typos in message. Thanks! -- This sentence is not sure that it exists, but if it does,

Crash with channel

2016-02-15 Fir de Conversatie Yukihiro Nakadaira
Steps to reproduce: :" 1 :echo ch_open("noserver") :" 2 :let c = ch_open("noserver") :let d = c There is no NULL check for fail channel. And two typos in message. diff --git a/src/channel.c b/src/channel.c index d5d7ffb..003c933 100644 --- a/src/channel.c +++ b/src/channel.c @@