mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
use a_strncpy
This commit is contained in:
parent
8d2f292bef
commit
e0d87ae0d9
1 changed files with 5 additions and 4 deletions
7
widget.c
7
widget.c
|
@ -146,7 +146,7 @@ uicb_widget_tell(int screen, char *arg)
|
|||
{
|
||||
Widget *widget;
|
||||
char *p, *command;
|
||||
int len;
|
||||
ssize_t len;
|
||||
|
||||
if (!arg)
|
||||
{
|
||||
|
@ -172,8 +172,9 @@ uicb_widget_tell(int screen, char *arg)
|
|||
if(p + a_strlen(p) < arg + len)
|
||||
{
|
||||
p = p + a_strlen(p) + 1;
|
||||
command = p_new(char, a_strlen(p) + 1);
|
||||
strncpy(command, p, a_strlen(p));
|
||||
len = a_strlen(p);
|
||||
command = p_new(char, len + 1);
|
||||
a_strncpy(command, len + 1, p, len);
|
||||
widget->tell(widget, command);
|
||||
p_delete(&command);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue