File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3272,7 +3272,7 @@ do_in_runtimepath(
32723272
32733273 if ((done == FAIL || (flags & DIP_ALL )) && (flags & DIP_START ))
32743274 {
3275- len = STRLEN (start_dir ) + STRLEN (name );
3275+ len = ( int )( STRLEN (start_dir ) + STRLEN (name ) );
32763276 s = alloc (len );
32773277 if (s == NULL )
32783278 return FAIL ;
@@ -3283,7 +3283,7 @@ do_in_runtimepath(
32833283
32843284 if ((done == FAIL || (flags & DIP_ALL )) && (flags & DIP_OPT ))
32853285 {
3286- len = STRLEN (opt_dir ) + STRLEN (name );
3286+ len = ( int )( STRLEN (opt_dir ) + STRLEN (name ) );
32873287 s = alloc (len );
32883288 if (s == NULL )
32893289 return FAIL ;
Original file line number Diff line number Diff line change @@ -748,6 +748,8 @@ static char *(features[]) =
748748
749749static int included_patches [] =
750750{ /* Add new patch number below this line */
751+ /**/
752+ 1587 ,
751753/**/
752754 1586 ,
753755/**/
You can’t perform that action at this time.
0 commit comments