* source.c (add_path): Use memmove instead of strcpy because the
strings overlap.
+2012-03-16 Chris January <chris.january@allinea.com>
+
+ * source.c (add_path): Use memmove instead of strcpy because the
+ strings overlap.
+
2012-03-16 Joel Brobecker <brobecker@adacore.com>
* value.h (set_value_parent): Add declaration.
p--; /* Back over leading separator. */
if (prefix > p - *which_path)
goto skip_dup; /* Same dir twice in one cmd. */
- strcpy (p, &p[len + 1]); /* Copy from next \0 or : */
+ memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1); /* Copy from next \0 or : */
}
p = strchr (p, DIRNAME_SEPARATOR);
if (p != 0)