]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.159 v7.3.159
authorBram Moolenaar <Bram@vim.org>
Mon, 11 Apr 2011 12:29:17 +0000 (14:29 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 11 Apr 2011 12:29:17 +0000 (14:29 +0200)
Problem:    Using uninitialized pointer when out of memory.
Solution:   Check for NULL return value.

src/mbyte.c
src/version.c

index 61a7d8bd65ad0c5ed463d01a05cdfa40e5ffb32b..ce0c8975eebc3400878b3627ccb3720e9c54208d 100644 (file)
@@ -4129,7 +4129,7 @@ iconv_string(vcp, str, slen, unconvlenp, resultlenp)
        done = to - (char *)result;
     }
 
-    if (resultlenp != NULL)
+    if (resultlenp != NULL && result != NULL)
        *resultlenp = (int)(to - (char *)result);
     return result;
 }
index 77cd01002600e158fe33dcc752fb76179d32027b..3cc982e1fb13d5f526846335b952e1aa74b71b64 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    159,
 /**/
     158,
 /**/