Re: [vim/vim] Segfault when calling gettabwinvar() with nonexistent tabnr and winnr > 1000 (#5475)

2020-01-14 Fir de Conversatie John Little
I reproduced this, and noticed that the stock Ubuntu version did not, so bisected to find the first bad commit is 9c27b1c6d140ca824a78654c1cb70a43a69b4ec6 Date: Sun May 26 18:48:13 2019 +0200 patch 8.1.1400: using global pointer for tab-local popups is clumsy Problem:Using global pointer f

message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Elimar Riesebieter
Hi all, message_test fails on powerpc and i386 (32bit arch): message_test: message_test.c:170: void test_vim_snprintf(void): Assertion `n == 6' failed. Aborted make[1]: *** [Makefile:2242: run_message_test] Error 1 Building on amd64 just runs fine. Elimar -- Never make anything simple and

Re: message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Bram Moolenaar
Elimar Riesebieter wrote: > message_test fails on powerpc and i386 (32bit arch): > > message_test: message_test.c:170: void test_vim_snprintf(void): Assertion `n > == 6' failed. > Aborted > make[1]: *** [Makefile:2242: run_message_test] Error 1 > > Building on amd64 just runs fine. This shou

Patch 8.2.0117

2020-01-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.0117 Problem:Crash when using gettabwinvar() with invalid arguments. (Yilin Yang) Solution: Use "curtab" if "tp" is NULL. (closes #5475) Files: src/evalwindow.c, src/testdir/test_getvar.vim *** ../vim-8.2.0116/src/evalwindow.c2020-01-06 21:03:20.792592602 +0

Re: message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Elimar Riesebieter
* Bram Moolenaar [2020-01-14 19:06 +0100]: > > Elimar Riesebieter wrote: > > > message_test fails on powerpc and i386 (32bit arch): > > > > message_test: message_test.c:170: void test_vim_snprintf(void): Assertion > > `n == 6' failed. > > Aborted > > make[1]: *** [Makefile:2242: run_message_t

Re: message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Dominique Pellé
Bram Moolenaar wrote: > Elimar Riesebieter wrote: > > > message_test fails on powerpc and i386 (32bit arch): > > > > message_test: message_test.c:170: void test_vim_snprintf(void): Assertion > > `n == 6' failed. > > Aborted > > make[1]: *** [Makefile:2242: run_message_test] Error 1 > > > > Build

Re: message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Bram Moolenaar
Elimar Riesebieter wrote: > > > message_test fails on powerpc and i386 (32bit arch): > > > > > > message_test: message_test.c:170: void test_vim_snprintf(void): Assertion > > > `n == 6' failed. > > > Aborted > > > make[1]: *** [Makefile:2242: run_message_test] Error 1 > > > > > > Building on

Patch 8.2.0118

2020-01-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.0118 Problem:Crash when cycling to buffers involving popup window . Solution: Do not decrement buffer reference count. Files: src/popupwin.c, src/testdir/test_popupwin.vim, src/testdir/dumps/Test_popupwin_infopopup_7.dump *** ../vim-8.2.0117/src/popupwin.c

Re: message_test fails on powerpc and i386

2020-01-14 Fir de Conversatie Dominique Pellé
Dominique Pellé wrote: > Bram Moolenaar wrote: > > > Elimar Riesebieter wrote: > > > > > message_test fails on powerpc and i386 (32bit arch): > > > > > > message_test: message_test.c:170: void test_vim_snprintf(void): Assertion > > > `n == 6' failed. > > > Aborted > > > make[1]: *** [Makefile:2

Patch 8.2.0119

2020-01-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.0119 Problem:Message test fails on some platforms. (Elimar Riesebieter) Solution: Add type cast to vim_snprintf() argument. (Dominique Pelle) Files: src/message_test.c *** ../vim-8.2.0118/src/message_test.c 2019-12-31 19:24:47.989647273 +0100 --- src/message_test.c 2020-0

Re: Patch 8.2.0119

2020-01-14 Fir de Conversatie Elimar Riesebieter
* Bram Moolenaar [2020-01-14 22:03 +0100]: > > Patch 8.2.0119 > Problem:Message test fails on some platforms. (Elimar Riesebieter) > Solution: Add type cast to vim_snprintf() argument. (Dominique Pelle) > Files:src/message_test.c Thanks for the fix. Kudos to Dominique ;-) Eli