Problem: Gcc warns for uninitialized variable.
Solution: Put usage inside "if". (Ken Takata)
if (line == NULL)
return;
mch_memmove(line, newp, len);
- l = oldproplen * sizeof(textprop_T);
- mch_memmove(line + len, props, l);
- len += l;
+ if (oldproplen > 0)
+ {
+ l = oldproplen * sizeof(textprop_T);
+ mch_memmove(line + len, props, l);
+ len += l;
+ }
for (i = 0; i < count - 1; ++i)
if (prop_lines[i] != NULL)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1463,
/**/
1462,
/**/