mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-11 15:35:13 +00:00
change strcpy to strlcpy
Change-Id: I8b9429a3c225a82842fce136bdb14b8b135066d3 Signed-off-by: lilei19 <lilei19@xiaomi.com>
This commit is contained in:
parent
e86745b9a2
commit
41f60bd669
33 changed files with 238 additions and 180 deletions
|
|
@ -236,7 +236,8 @@ static int xmlrpc_parseparam(struct parsebuf_s *pbuf)
|
|||
break;
|
||||
|
||||
case 's':
|
||||
strcpy(g_xmlcall.arguments[g_xmlcall.argsize].u.string, g_data);
|
||||
strlcpy(g_xmlcall.arguments[g_xmlcall.argsize].u.string, g_data,
|
||||
sizeof(g_xmlcall.arguments[g_xmlcall.argsize].u.string));
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
@ -324,7 +325,7 @@ static int xmlrpc_parsemethod(struct parsebuf_s *pbuf)
|
|||
{
|
||||
/* Save the method name */
|
||||
|
||||
strcpy(g_xmlcall.name, g_data);
|
||||
strlcpy(g_xmlcall.name, g_data, sizeof(g_xmlcall.name));
|
||||
|
||||
/* Find the closing /methodCall */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue