summaryrefslogtreecommitdiff
path: root/gcc/xcoffout.c
diff options
context:
space:
mode:
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-15 16:01:55 +0000
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-15 16:01:55 +0000
commit986f9c4fee2d91d4472d4e91d8d07c78e0065112 (patch)
tree12cfe6ea9d9c016f229946b0ae440e2cb41fbdf4 /gcc/xcoffout.c
parentc8a1bdf61be88cb2fca7ced88274eb9a91442e48 (diff)
downloadgcc-986f9c4fee2d91d4472d4e91d8d07c78e0065112.tar.gz
* xcoffout.c (xcoffout_declare_function): Change strncpy to memcpy.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92202 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/xcoffout.c')
-rw-r--r--gcc/xcoffout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c
index a2d8a33ba5f..f2b8a3fbe77 100644
--- a/gcc/xcoffout.c
+++ b/gcc/xcoffout.c
@@ -413,7 +413,7 @@ xcoffout_declare_function (FILE *file, tree decl, const char *name)
if (name[len - 1] == ']')
{
char *n = alloca (len - 3);
- strncpy (n, name, len - 4);
+ memcpy (n, name, len - 4);
n[len - 4] = '\0';
name = n;
}