2011-03-02 Michael Snyder <msnyder@vmware.com>

* printcmd.c (print_scalar_formatted): Use strncpy for safety.
This commit is contained in:
Michael Snyder 2011-03-02 22:56:44 +00:00
parent c38d16a719
commit daac021a6c
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2011-03-02 Michael Snyder <msnyder@vmware.com>
* printcmd.c (print_scalar_formatted): Use strncpy for safety.
* infcall.c (call_function_by_hand): Add break statements for lint.
* utils.c (parse_escape): Escape the escape char.

View File

@ -533,7 +533,7 @@ print_scalar_formatted (const void *valaddr, struct type *type,
if (*cp == '\0')
cp--;
}
strcpy (buf, cp);
strncpy (buf, cp, sizeof (bits));
fputs_filtered (buf, stream);
}
break;