Skip to content

Commit

Permalink
vxge: use strcpy for strings
Browse files Browse the repository at this point in the history
Use strncpy instead of memcpy when working on strings

Signed-off-by: Jon Mason <jon.mason@exar.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jon Mason authored and David S. Miller committed Dec 1, 2010
1 parent 1bacdbb commit ead5d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/vxge/vxge-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3451,7 +3451,7 @@ static void vxge_device_unregister(struct __vxge_hw_device *hldev)
vxge_debug_entryexit(vdev->level_trace, "%s: %s:%d", vdev->ndev->name,
__func__, __LINE__);

memcpy(buf, dev->name, IFNAMSIZ);
strncpy(buf, dev->name, IFNAMSIZ);

/* in 2.6 will call stop() if device is up */
unregister_netdev(dev);
Expand Down

0 comments on commit ead5d23

Please sign in to comment.