]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.2.0005: Coverity reports unreachable code v9.2.0005
authorChristian Brabandt <cb@256bit.org>
Sun, 15 Feb 2026 16:07:27 +0000 (16:07 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 15 Feb 2026 16:07:27 +0000 (16:07 +0000)
Problem:  Coverity reports unreachable code, CID: 1681310
Solution: Drop the ternary checking for non-NULL of from_encoding_raw.

closes: #19402

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/strings.c
src/version.c

index f2176f1c436e09b58fef4752bc40dcf1c6237593..8b44a2d2be02966daed69d0be9101aceab5abab6 100644 (file)
@@ -1469,7 +1469,8 @@ f_blob2str(typval_T *argvars, typval_T *rettv)
        vimconv_T vimconv;
        vimconv.vc_type = CONV_NONE;
        // Use raw encoding name for iconv to preserve endianness (utf-16be vs utf-16)
-       if (convert_setup_ext(&vimconv, from_encoding_raw ? from_encoding_raw : from_encoding, FALSE, p_enc, FALSE) == FAIL)
+       // from_encoding_raw is guaranteed non-NULL whenever from_encoding != NULL
+       if (convert_setup_ext(&vimconv, from_encoding_raw, FALSE, p_enc, FALSE) == FAIL)
        {
            ga_clear(&blob_ga);
            semsg(_(e_str_encoding_from_failed), from_encoding);
@@ -1497,8 +1498,8 @@ f_blob2str(typval_T *argvars, typval_T *rettv)
 
            if (from_encoding != NULL)
            {
-               char_u *converted = convert_string(str,
-                       from_encoding_raw ? from_encoding_raw : from_encoding, p_enc);
+               // from_encoding_raw is guaranteed non-NULL whenever from_encoding != NULL
+               char_u *converted = convert_string(str, from_encoding_raw, p_enc);
                vim_free(str);
                str = converted;
            }
index 12365dc35cc300a88e456b1a6deabdf34761ff50..2c6404fb05853a17410ff6962ad0e234e5a71b87 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    5,
 /**/
     4,
 /**/