From be15b141e0dddd9f41e464ca98aef1b05b28cf6b Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 25 Oct 2008 11:21:28 +0000 Subject: Replace uses of strncpy (a GNU extension) with Qemu pstrcpy git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5531 c046a42c-6fe2-441c-8c8c-71466251a162 --- block-vmdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'block-vmdk.c') diff --git a/block-vmdk.c b/block-vmdk.c index c49b671..2a257b6 100644 --- a/block-vmdk.c +++ b/block-vmdk.c @@ -344,7 +344,7 @@ static int vmdk_parent_open(BlockDriverState *bs, const char * filename) if ((end_name - p_name) > sizeof (s->hd->backing_file) - 1) return -1; - strncpy(s->hd->backing_file, p_name, end_name - p_name); + pstrcpy(s->hd->backing_file, end_name - p_name, p_name); if (stat(s->hd->backing_file, &file_buf) != 0) { path_combine(parent_img_name, sizeof(parent_img_name), filename, s->hd->backing_file); -- cgit v1.1