aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-14 18:34:22 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-14 18:34:22 +0000
commitbc575e95d15dae70490ad165950f56235fbfa779 (patch)
tree927bea2614cfd42d261da342864890a1c64c0b72
parent00766a4ec9dd748dab308f6a2b00f02e964d9951 (diff)
downloadqemu-bc575e95d15dae70490ad165950f56235fbfa779.zip
qemu-bc575e95d15dae70490ad165950f56235fbfa779.tar.gz
qemu-bc575e95d15dae70490ad165950f56235fbfa779.tar.bz2
Fix some more warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6300 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--qemu-sockets.c2
-rw-r--r--vnc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/qemu-sockets.c b/qemu-sockets.c
index 551ef73..4111f82 100644
--- a/qemu-sockets.c
+++ b/qemu-sockets.c
@@ -107,7 +107,7 @@ int inet_listen(const char *str, char *ostr, int olen,
/* parse address */
if (str[0] == ':') {
/* no host given */
- strcpy(addr,"");
+ addr[0] = '\0';
if (1 != sscanf(str,":%32[^,]%n",port,&pos)) {
fprintf(stderr, "%s: portonly parse error (%s)\n",
__FUNCTION__, str);
diff --git a/vnc.c b/vnc.c
index 575fd68..e1ff4ed 100644
--- a/vnc.c
+++ b/vnc.c
@@ -2546,7 +2546,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
char *dpy;
dpy = qemu_malloc(256);
if (strncmp(display, "unix:", 5) == 0) {
- strcpy(dpy, "unix:");
+ pstrcpy(dpy, 256, "unix:");
vs->lsock = unix_listen(display+5, dpy+5, 256-5);
} else {
vs->lsock = inet_listen(display, dpy, 256, SOCK_STREAM, 5900);