]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.1818: possible crash when calculating topline in diff.c v9.1.1818
authorChristian Brabandt <cb@256bit.org>
Wed, 1 Oct 2025 21:25:40 +0000 (21:25 +0000)
committerChristian Brabandt <cb@256bit.org>
Wed, 1 Oct 2025 22:16:09 +0000 (22:16 +0000)
Problem:  possible crash when calculating topline in diff.c
          (youngmith)
Solution: Check for pointer being Null before accessing it

fixes: #18437

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/diff.c
src/testdir/test_crash.vim
src/version.c

index 25b9ae977b1a582653c06493a1190b4ae903f3cb..ec0640c56a97b1d200f2b40345421e1731f7e158 100644 (file)
@@ -2226,6 +2226,7 @@ calculate_topfill_and_topline(
     diff_T     *thistopdiff = NULL;
     diff_T     *next_adjacent_blocks = NULL;
     int                virtual_lines_passed = 0;
+    int                curlinenum_to = 1;
 
     find_top_diff_block(&thistopdiff, &next_adjacent_blocks, fromidx, from_topline);
 
@@ -2253,7 +2254,8 @@ calculate_topfill_and_topline(
 
     // move the same amount of virtual lines in the target buffer to find the
     // cursor's line number
-    int curlinenum_to = thistopdiff->df_lnum[toidx];
+    if (thistopdiff != NULL)
+       curlinenum_to = thistopdiff->df_lnum[toidx];
 
     int virt_lines_left = virtual_lines_passed;
     curdif = thistopdiff;
index ff9b63ba3ac2a29ffe20cb22aed72c91e43a43e4..a26a1b8fd2772785aae6d9175c831f13714b5d95 100644 (file)
@@ -143,6 +143,28 @@ func Test_crash1_2()
   call s:RunCommandAndWait(buf, args ..
     \ ' ; echo "crash 5: [OK]" >> '.. result)
 
+  let file = 'Xdiff'
+  let lines =<< trim END
+    diffs a
+    edit Xdiff
+    file b
+    exe "norm! \<C-w>\<C-w>"
+    exe "norm! \<C-w>\<C-w>"
+    exe "norm! \<C-w>\<C-w>"
+    exe "norm! \<C-w>\<C-w>"
+    exe "norm! \<C-w>\<C-w>"
+    exe "norm! \<C-w>\L"
+    exe "norm! \<C-j>oy\<C-j>"
+    edit Xdiff
+    sil!so
+  END
+  call writefile(lines, file, 'D')
+  let cmn_args = "%s -u NONE -i NONE -X -m -n -e -s -u %s -c ':qa!'"
+  let args = printf(cmn_args, vim, file)
+  call s:RunCommandAndWait(buf, args ..
+    \ ' && echo "crash 6: [OK]" >> '.. result)
+
+
   " clean up
   exe buf .. "bw!"
   exe "sp " .. result
@@ -152,6 +174,7 @@ func Test_crash1_2()
       \ 'crash 3: [OK]',
       \ 'crash 4: [OK]',
       \ 'crash 5: [OK]',
+      \ 'crash 6: [OK]',
       \ ]
 
   call assert_equal(expected, getline(1, '$'))
index 016f73f87e865e1cdbcf20ad7f089a7087ba466a..0565a8216ac20ee9535881f5e79b6a01520c4579 100644 (file)
@@ -729,6 +729,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1818,
 /**/
     1817,
 /**/