mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.1718
Problem: Coverity: not using return value of set_ref_in_item(). Solution: Use the return value.
This commit is contained in:
@@ -7244,7 +7244,7 @@ set_ref_in_item(
|
|||||||
|
|
||||||
if (pt != NULL)
|
if (pt != NULL)
|
||||||
for (i = 0; i < pt->pt_argc; ++i)
|
for (i = 0; i < pt->pt_argc; ++i)
|
||||||
set_ref_in_item(&pt->pt_argv[i], copyID,
|
abort = abort || set_ref_in_item(&pt->pt_argv[i], copyID,
|
||||||
ht_stack, list_stack);
|
ht_stack, list_stack);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -748,6 +748,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1718,
|
||||||
/**/
|
/**/
|
||||||
1717,
|
1717,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user